Skip to content
VS Code

Manager.io MCP for VS Code

io.github.flumpiey/manager-mcp

MCP server for Manager.io bookkeeping: read-first with opt-in scoped task and write tools

client:VS Code transport:stdio runtime:pypi

Install Manager.io MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "manager-api-url",
      "description": "MANAGER_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manager-api-key",
      "description": "MANAGER_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manager-mcp-write-scopes",
      "description": "MANAGER_MCP_WRITE_SCOPES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manager-mcp-delete-scopes",
      "description": "MANAGER_MCP_DELETE_SCOPES",
      "password": true
    }
  ],
  "servers": {
    "manager-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "manager-mcp"
      ],
      "env": {
        "MANAGER_API_URL": "${input:manager-api-url}",
        "MANAGER_API_KEY": "${input:manager-api-key}",
        "MANAGER_MCP_WRITE_SCOPES": "${input:manager-mcp-write-scopes}",
        "MANAGER_MCP_DELETE_SCOPES": "${input:manager-mcp-delete-scopes}"
      }
    }
  }
}

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

Manager.io MCP in other clients