Server data from the Official MCP Registry
Search, bid, and message clients on Freelancer.com from Claude. Multi-account support.
Search, bid, and message clients on Freelancer.com from Claude. Multi-account support.
This MCP server is a well-structured Freelancer.com API wrapper with proper authentication, appropriate permissions, and good code quality. Tokens are handled securely via environment variables, input validation uses Zod schemas, and destructive operations are clearly marked. No critical vulnerabilities or malicious patterns detected. Minor code quality observations noted but do not impact security posture. Supply chain analysis found 8 known vulnerabilities in dependencies (0 critical, 8 high severity). Package verification found 1 issue.
6 files analyzed · 13 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: FREELANCER_OAUTH_TOKEN
Environment variable: FREELANCER_ACCOUNTS
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-godesigntech-freelancer-mcp-server": {
"env": {
"FREELANCER_ACCOUNTS": "your-freelancer-accounts-here",
"FREELANCER_OAUTH_TOKEN": "your-freelancer-oauth-token-here"
},
"args": [
"-y",
"freelancer-mcp-server"
],
"command": "npx"
}
}
}From the project's GitHub README.
An MCP server that connects Claude (Desktop, Code, or any MCP-compatible client) directly to Freelancer.com. Search and bid on projects, read and reply to client messages, review your track record, and manage skills/specialty profiles — all from a chat.
Supports multiple Freelancer accounts in one server (e.g. your own account plus one or more clients' accounts you manage), switchable per tool call.
This project is 100% self-contained: it talks only to freelancer.com's public API using whatever access token(s) you provide. No other data source, project, or third-party service is involved.

That token is all this server needs — no password, no app review, no OAuth redirect flow. Repeat this for each additional Freelancer account you want connected (see Multiple accounts).
| Tool | Example prompt |
|---|---|
freelancer_list_accounts | "Which Freelancer accounts are connected?" |
freelancer_get_self | "Show my profile and reputation" |
freelancer_get_user | "Look up @some_freelancer on Freelancer" |
freelancer_search_projects | "Find the latest n8n automation projects under $500" |
freelancer_get_project | "Get details on project 12345678" |
freelancer_my_projects | "List my active projects" / "Show my completed projects" |
freelancer_get_project_bids | "Who has bid on project 12345 and how much?" |
freelancer_my_bids | "Show my awarded bids" / "Show my rejected bids" |
freelancer_place_bid | "Bid $200 on project 12345 with 5-day delivery" |
freelancer_get_milestones | "What milestones are on project 12345?" |
freelancer_list_threads | "Show my inbox" |
freelancer_get_messages | "Read this chat: freelancer.com/messages/thread/98765" |
freelancer_send_message | "Reply to thread 98765 saying..." |
freelancer_search_skills / list_skills / add_skills / remove_skills / set_skills | "Add n8n and Zapier to my skills" |
freelancer_list_profiles / create_profile / update_profile | "Create a specialty profile for AI automation" |
Every tool accepts an optional account argument to pick which connected Freelancer account it should act on/as (see Multiple accounts).
There's no single "analyze my strategy" button — instead, Claude does the analysis itself over the raw data this server exposes. This keeps the server a thin, honest API wrapper instead of a black box. Ask things like:
"Pull my awarded bids and my rejected bids, then compare amount, delivery time, and proposal length/style to figure out what's working."
"Look at my completed projects and tell me which skills show up most often."
"Compare my bid on project X to the other bids on it — am I priced competitively?"
Claude will chain freelancer_my_bids (status awarded vs rejected), freelancer_my_projects (status complete), and freelancer_get_project_bids to gather the data, then reason over it directly in the conversation.
freelancer_get_messages and freelancer_send_message accept either a plain numeric thread ID or a pasted Freelancer chat/message link — the server extracts the ID either way.
Finding and scoring the best projects to bid on, with a ready pitch script for each:

Reading a client thread by chat link and building a conversion strategy:

Auditing skills already on a profile:

The package is published on npm as freelancer-mcp-server — no clone, no build, npx fetches and runs it on demand.
claude mcp add freelancer --env FREELANCER_OAUTH_TOKEN=your_token_here -- npx -y freelancer-mcp-server
Or just ask Claude Code directly, in plain English, once you have your token:
"Add the freelancer-mcp-server MCP server using npx, with my Freelancer access token set as FREELANCER_OAUTH_TOKEN"
Claude Code can run the claude mcp add command itself — you don't have to type it.
Open your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this block inside "mcpServers" (create the file if it doesn't exist):
{
"mcpServers": {
"freelancer": {
"command": "npx",
"args": ["-y", "freelancer-mcp-server"],
"env": {
"FREELANCER_OAUTH_TOKEN": "your_token_here"
}
}
}
}
Restart Claude Desktop — you should see a 🔌 indicating the server connected.
To connect more than one Freelancer account (your own plus, say, two clients'), use FREELANCER_ACCOUNTS instead of FREELANCER_OAUTH_TOKEN — a JSON object mapping a label you choose to each token:
{
"mcpServers": {
"freelancer": {
"command": "npx",
"args": ["-y", "freelancer-mcp-server"],
"env": {
"FREELANCER_ACCOUNTS": "{\"main\":\"token1\",\"client_acme\":\"token2\"}"
}
}
}
}
Or via claude mcp add:
claude mcp add freelancer --env FREELANCER_ACCOUNTS='{"main":"token1","client_acme":"token2"}' -- npx -y freelancer-mcp-server
The first account listed becomes the default (used when a tool call omits account). Ask Claude "which Freelancer accounts are connected?" to confirm, then say e.g. "using the client_acme account, show me the latest projects" to target a specific one. Tokens are never logged, echoed back, or written anywhere by this server — they only ever go into the outgoing freelancer-oauth-v1 header.
git clone https://github.com/godesigntech/freelancer-mcp-server.git
cd freelancer-mcp-server
npm install
npm run build
claude mcp add freelancer --env FREELANCER_OAUTH_TOKEN=your_token_here -- node /FULL/PATH/TO/freelancer-mcp-server/dist/index.js
Ask Claude:
"Show my Freelancer profile"
If it responds with your username and stats, you're set.
The Freelancer.com public REST API is read-mostly for profiles. After probing the live API, here's the real boundary:
Editable:
/users/0.1/self/jobs). Freelancer caps the total number of skills per account./users/0.1/profiles): tagline, hourly_rate, description, skills. Caveats: the API has no endpoint to list your own profile IDs (you must already know them), and some account types (e.g. certain corporate accounts) cannot create new ones.NOT possible via the public API (web-UI only):
.env for npm run dev) — never committed, never sent anywhere but Freelancer's own API.place_bid, send_message, skill/profile edits) always surface for your review before they execute, since Claude shows tool calls before running them."no Freelancer accounts configured"
→ Set FREELANCER_OAUTH_TOKEN or FREELANCER_ACCOUNTS in your MCP client config.
401 Unauthorized → Token expired or wrong. Generate a fresh one at https://accounts.freelancer.com/settings/develop
"Unknown account "x""
→ Run freelancer_list_accounts to see the exact labels configured, then use one of those.
Tool not appearing in Claude
→ If using npx, confirm Node.js 18+ is installed and npx -y freelancer-mcp-server runs without error from a terminal. If running from source, confirm the path in your config is the absolute path to dist/index.js, and that npm run build succeeded.
Issues and PRs welcome. Keep changes scoped to the Freelancer.com API surface — this project intentionally stays a single-purpose, dependency-light MCP server.
MIT
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.