freelancer mcp server for VS Code
io.github.godesigntech/freelancer-mcp-server
Search, bid, and message clients on Freelancer.com from Claude. Multi-account support.
client:VS Code
transport:stdio
runtime:npm
Install freelancer mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "freelancer-oauth-token",
"description": "FREELANCER_OAUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "freelancer-accounts",
"description": "FREELANCER_ACCOUNTS",
"password": true
}
],
"servers": {
"freelancer-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"freelancer-mcp-server"
],
"env": {
"FREELANCER_OAUTH_TOKEN": "${input:freelancer-oauth-token}",
"FREELANCER_ACCOUNTS": "${input:freelancer-accounts}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs