🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@workix/mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@workix/mcp

Workix MCP for AI agents: search the Workix hub (projects/startups, roles, orders, performers), create or update your listings and performer profile with WORKIX_AGENT_KEY, collect freelance/job digests from supported boards (adapters stay local — platform

latest
Source
npmnpm
Version
0.1.3
Version published
Weekly downloads
176
259.18%
Maintainers
1
Weekly downloads
 
Created
Source

Workix MCP

Local MCP server for AI agents (Cursor, Claude, etc.) that work with the Workix hub and freelance boards.

Workix is a shared catalog where projects (startups/products/communities), roles & orders, and performers find each other. It is not a closed freelance marketplace: listings point to the owner’s preferred contact or apply flow. Agents use this MCP to search that catalog, manage your listings, and also pull opportunities from external boards while keeping platform credentials on the user’s machine.

Install: npx -y @workix/mcp · Registry name: co.workix/mcp · Docs: workix.co/agent · api.txt · llms.txt

What you can use it for

  • Discover — search hub projects, roles, orders, and performers relevant to a skill or niche

  • Publish / update — create or edit a startup or role, maintain a performer profile (WORKIX_AGENT_KEY)

  • Freelance workflow — digests and search across supported boards, draft proposals, prepare browser apply steps (submit only with human confirmation)

  • Ship a product card — publish a live site/PWA URL into the dStore catalog and find similar apps

  • Hub tools — search/list/create projects, roles, profile; feedback/support (needs WORKIX_AGENT_KEY)

  • Board tools — digest / search / draft / prepare-apply on Upwork, Freelancehunt, Kwork, FL RSS, … (credentials stay in your env)

  • Downloadable adapters — heavy board modules are not required at install; MCP downloads them from the hub registry on first use and caches locally

Open contribution: see CONTRIBUTING.md. Agent prompt & storefront: ../README.md.

Downloadable platform modules

Core MCP always includes hub tools + generic RSS (FL / Freelance.ru / Weblancer).

Other boards ship as modules from the hub:

| Registry | https://workix.co/mcp/registry.json | | Artifacts | https://workix.co/mcp/adapters/`-.tgz | | Local cache | $WORKIX_MCP_DATA/adapters///(defaultmcp/data/adapters`) |

On workix_digest / workix_search, MCP calls ensure for needed platforms, verifies sha256, extracts, and import()s the module. Later runs reuse the cache.

ToolRole
workix_list_platformsCatalog + installed / available / needs_env
workix_ensure_platformsDownload modules for given platforms
workix_install_platformForce install/update one module
workix_remove_platformDelete from local cache

Override registry: WORKIX_MCP_REGISTRY (file path or URL). Offline fallback: assets/mcp/registry.json next to the repo / mcp/registry.local.json after npm run pack:adapters.

Contribute an adapter

mcp/
  platforms.json                 # platform id + "module": "<id>"
  src/adapters/<id>.ts           # fetch + normalize jobs
  src/module-entries/<id>.ts     # downloadable entry (meta + fetchJobs)
  scripts/pack-adapters.mjs      # → assets/mcp/adapters/*.tgz + registry.json
  src/tools/                     # MCP tool handlers
  src/index.ts                   # tool registration
  .env.example                   # document new env keys

After changing an adapter:

npm run build
npm run pack:adapters

PRs: new boards, better ranking, presets (presets.json), tests, docs. Never commit secrets or data/ dumps.

Install

cd mcp
npm install
npm run build
# optional: refresh local registry tarballs from source
npm run pack:adapters

On Windows ARM, native scripts may be disabled (.npmrc: ignore-scripts=true) because of optional native deps.

Cursor mcp.json

{
  "mcpServers": {
    "workix": {
      "command": "node",
      "args": ["FULL/PATH/TO/Workix/mcp/dist/index.js"],
      "env": {
        "WORKIX_API": "https://workix.co",
        "WORKIX_AGENT_KEY": "wix_…"
      }
    }
  }
}

Optional board credentials (examples — see .env.example):

  • UPWORK_CLIENT_ID / UPWORK_CLIENT_SECRET / OAuth flow tools
  • FREELANCEHUNT_TOKEN
  • KWORK_LOGIN / KWORK_PASSWORD / KWORK_PHONE4 / KWORK_PROXY
  • Proxy pool: PROXY_1= (subscription URL or socks/http list)

Never send platform passwords to the hub — only to this local process.

Profile

cp profile.example.md profile.md

Optional: WORKIX_PROFILE_PATH, WORKIX_MCP_DATA.

Hub tools (need WORKIX_API; writes need WORKIX_AGENT_KEY)

ToolRole
workix_hub_health / workix_hub_register / workix_hub_me / workix_hub_rotate_keyAuth & health (rotate_key needs confirm:true; writes mcp/.env by default)
workix_list_startups / workix_get_startup / workix_create_startup / workix_update_startupProjects — products, startups, early ideas OK (pending = publish)
workix_list_performers / workix_get_performerPerformers (builders + bloggers/creators) + their listings
workix_list_hub_orders / workix_get_hub_orderHub orders (scraped → no publisher card)
workix_list_roles / workix_create_role / workix_update_roleRoles / orders (concrete asks; paid or cofounder)
workix_get_profile / workix_update_profileOwn performer profile (encourage public card + openTo)

Write tools echo a short who can publish guide: early stage welcome; moderation (pending) is normal — do not discourage listing. | workix_hub_apply | Apply on hub | | workix_feedback | bug / suggestion / support / other → hub admins (rate-limited) |

Board tools (local credentials)

ToolRole
workix_dstore_search / _similar / _get / _publish / _list / _quotadStore catalog — same REST as official dstore-mcp (api.txt)
(optional) separate MCP dstoresearch_catalog, get_app, get_similar, add_url, get_list, quota_status — see api.txt §0
workix_digest / workix_search / workix_get_jobRead boards (auto-downloads adapters)
workix_draft_proposalDraft reply
workix_submit_proposalSubmit only with confirm: true after human OK
workix_prepare_browser_applyBrowser checklist
workix_sources_status / workix_list_platforms / workix_open_watch_sourceStatus & watch
workix_ensure_platforms / workix_install_platform / workix_remove_platformAdapter cache
workix_upwork_auth_url / workix_upwork_exchange_codeUpwork OAuth

Rule: never submit a proposal without explicit user approval.

Smoke

npm run smoke
npm run smoke:startups

Dev

npm run dev

Keywords

mcp

FAQs

Package last updated on 26 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts