modusop mcp for VS Code
io.github.jwwd-repos/modusop-mcp
MCP server for ModusOp — projects, tasks, time tracking, and retainers for AI assistants.
client:VS Code
transport:stdio
runtime:npm
Install modusop mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "modusop-api-token",
"description": "MODUSOP_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "modusop-api-url",
"description": "MODUSOP_API_URL",
"password": true
}
],
"servers": {
"modusop-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modusop/mcp-server"
],
"env": {
"MODUSOP_API_TOKEN": "${input:modusop-api-token}",
"MODUSOP_API_URL": "${input:modusop-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs