Skip to content
VS Code

aikount mcp for VS Code

io.github.mutonby/aikount-mcp

Contabilidad española con IA: facturas, gastos por OCR, conciliación bancaria y Modelo 303.

client:VS Code transport:stdio runtime:pypi

Install aikount mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "aikount-token",
      "description": "AIKOUNT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "aikount-api",
      "description": "AIKOUNT_API",
      "password": true
    }
  ],
  "servers": {
    "aikount-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "aikount-mcp"
      ],
      "env": {
        "AIKOUNT_TOKEN": "${input:aikount-token}",
        "AIKOUNT_API": "${input:aikount-api}"
      }
    }
  }
}

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

aikount mcp in other clients