Skip to content
VS Code

MCP Holded for VS Code

io.github.t4dhg/mcp-holded

MCP server for Holded (Spanish ERP): invoicing, accounting, treasury, CRM, projects, payroll.

client:VS Code transport:stdio runtime:npm

Install MCP Holded in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "holded-api-key",
      "description": "HOLDED_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "holded-base-url",
      "description": "HOLDED_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "holded-timeout-ms",
      "description": "HOLDED_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "holded-max-retries",
      "description": "HOLDED_MAX_RETRIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "debug",
      "description": "DEBUG",
      "password": true
    }
  ],
  "servers": {
    "mcp-holded": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@t4dhg/mcp-holded"
      ],
      "env": {
        "HOLDED_API_KEY": "${input:holded-api-key}",
        "HOLDED_BASE_URL": "${input:holded-base-url}",
        "HOLDED_TIMEOUT_MS": "${input:holded-timeout-ms}",
        "HOLDED_MAX_RETRIES": "${input:holded-max-retries}",
        "DEBUG": "${input:debug}"
      }
    }
  }
}

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

MCP Holded in other clients