Skip to content
VS Code

holded mcp for VS Code

io.github.energio-es/holded-mcp

MCP server for Holded — invoicing, accounting, CRM, projects, and team

client:VS Code transport:stdio runtime:npm

Install holded mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "holded-api-key",
      "description": "HOLDED_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "holded-modules",
      "description": "HOLDED_MODULES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "holded-rate-limit-per-second",
      "description": "HOLDED_RATE_LIMIT_PER_SECOND",
      "password": true
    },
    {
      "type": "promptString",
      "id": "holded-debug",
      "description": "HOLDED_DEBUG",
      "password": true
    }
  ],
  "servers": {
    "holded-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@energio/holded-mcp"
      ],
      "env": {
        "HOLDED_API_KEY": "${input:holded-api-key}",
        "HOLDED_MODULES": "${input:holded-modules}",
        "HOLDED_RATE_LIMIT_PER_SECOND": "${input:holded-rate-limit-per-second}",
        "HOLDED_DEBUG": "${input:holded-debug}"
      }
    }
  }
}

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

holded mcp in other clients