Skip to content
VS Code

e arveldaja mcp for VS Code

io.github.iseppo/e-arveldaja-mcp

Estonian e-arveldaja (RIK e-Financials) accounting — invoices, bank import, reports.

client:VS Code transport:stdio runtime:npm

Install e arveldaja mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "earveldaja-api-key-id",
      "description": "EARVELDAJA_API_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-api-public-value",
      "description": "EARVELDAJA_API_PUBLIC_VALUE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-api-password",
      "description": "EARVELDAJA_API_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-server",
      "description": "EARVELDAJA_SERVER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-allowed-paths",
      "description": "EARVELDAJA_ALLOWED_PATHS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-disable-progress",
      "description": "EARVELDAJA_DISABLE_PROGRESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-default-connection",
      "description": "EARVELDAJA_DEFAULT_CONNECTION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "earveldaja-log-file",
      "description": "EARVELDAJA_LOG_FILE",
      "password": true
    }
  ],
  "servers": {
    "e-arveldaja-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "e-arveldaja-mcp"
      ],
      "env": {
        "EARVELDAJA_API_KEY_ID": "${input:earveldaja-api-key-id}",
        "EARVELDAJA_API_PUBLIC_VALUE": "${input:earveldaja-api-public-value}",
        "EARVELDAJA_API_PASSWORD": "${input:earveldaja-api-password}",
        "EARVELDAJA_SERVER": "${input:earveldaja-server}",
        "EARVELDAJA_ALLOWED_PATHS": "${input:earveldaja-allowed-paths}",
        "EARVELDAJA_DISABLE_PROGRESS": "${input:earveldaja-disable-progress}",
        "EARVELDAJA_DEFAULT_CONNECTION": "${input:earveldaja-default-connection}",
        "EARVELDAJA_LOG_FILE": "${input:earveldaja-log-file}"
      }
    }
  }
}

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

e arveldaja mcp in other clients