Skip to content
VS Code

planfix mcp for VS Code

io.github.theyahia/planfix-mcp

MCP server for Planfix API — tasks, contacts. 3 tools.

client:VS Code transport:stdio runtime:npm

Install planfix mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "planfix-token",
      "description": "PLANFIX_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "planfix-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@theyahia/planfix-mcp"
      ],
      "env": {
        "PLANFIX_TOKEN": "${input:planfix-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

planfix mcp in other clients