Workix for VS Code
co.workix/mcp
Remote jobs, freelance gigs, vacancies. 24 boards: Upwork, Freelancer, RemoteOK, hh.ru, Kwork.
client:VS Code
transport:stdio
runtime:npm
Install Workix in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "workix-api",
"description": "WORKIX_API",
"password": true
},
{
"type": "promptString",
"id": "workix-agent-key",
"description": "WORKIX_AGENT_KEY",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@workix/mcp"
],
"env": {
"WORKIX_API": "${input:workix-api}",
"WORKIX_AGENT_KEY": "${input:workix-agent-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs