Skip to content
VS Code

Wafeq for VS Code

io.github.ohneben/wafeq-mcp

Wafeq accounting API: all 251 endpoints as safety-categorized MCP tools, over stdio or HTTP.

client:VS Code transport:stdio runtime:oci

Install Wafeq in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-transport",
      "description": "MCP_TRANSPORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wafeq-api-key",
      "description": "WAFEQ_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wafeq-access-token",
      "description": "WAFEQ_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wafeq-tool-groups",
      "description": "WAFEQ_TOOL_GROUPS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wafeq-api-base-url",
      "description": "WAFEQ_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-auth-token",
      "description": "MCP_AUTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "wafeq-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/ohneben/wafeq-mcp:2.1.0"
      ],
      "env": {
        "MCP_TRANSPORT": "${input:mcp-transport}",
        "WAFEQ_API_KEY": "${input:wafeq-api-key}",
        "WAFEQ_ACCESS_TOKEN": "${input:wafeq-access-token}",
        "WAFEQ_TOOL_GROUPS": "${input:wafeq-tool-groups}",
        "WAFEQ_API_BASE_URL": "${input:wafeq-api-base-url}",
        "MCP_AUTH_TOKEN": "${input:mcp-auth-token}"
      }
    }
  }
}

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

Wafeq in other clients