Skip to content
VS Code

siigo pyme mcp for VS Code

io.github.javalenciacai/siigo-pyme-mcp

SIIGO Pyme as MCP tools: the 47 ExcelSIIGO functions, plus company discovery.

client:VS Code transport:stdio runtime:npm

Install siigo pyme mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "siigo-usuario",
      "description": "SIIGO_USUARIO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "siigo-clave",
      "description": "SIIGO_CLAVE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "siigo-ano",
      "description": "SIIGO_ANO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "siigo-tools",
      "description": "SIIGO_TOOLS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "siigo-mcp-config-dir",
      "description": "SIIGO_MCP_CONFIG_DIR",
      "password": true
    }
  ],
  "servers": {
    "siigo-pyme-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "siigo-pyme-mcp"
      ],
      "env": {
        "SIIGO_USUARIO": "${input:siigo-usuario}",
        "SIIGO_CLAVE": "${input:siigo-clave}",
        "SIIGO_ANO": "${input:siigo-ano}",
        "SIIGO_TOOLS": "${input:siigo-tools}",
        "SIIGO_MCP_CONFIG_DIR": "${input:siigo-mcp-config-dir}"
      }
    }
  }
}

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

siigo pyme mcp in other clients