Skip to content
VS Code

freeagent mcp server for VS Code

io.github.oxygenbubbles/freeagent-mcp-server

FreeAgent accounting MCP: bank reconciliation, expenses, mileage claims and receipts.

client:VS Code transport:stdio runtime:npm

Install freeagent mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "freeagent-client-id",
      "description": "FREEAGENT_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "freeagent-client-secret",
      "description": "FREEAGENT_CLIENT_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "freeagent-refresh-token",
      "description": "FREEAGENT_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vendor-categories",
      "description": "VENDOR_CATEGORIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mileage-rate-pence",
      "description": "MILEAGE_RATE_PENCE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ors-api-key",
      "description": "ORS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-maps-api-key",
      "description": "GOOGLE_MAPS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "freeagent-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@oxygenbubbles/freeagent-mcp-server"
      ],
      "env": {
        "FREEAGENT_CLIENT_ID": "${input:freeagent-client-id}",
        "FREEAGENT_CLIENT_SECRET": "${input:freeagent-client-secret}",
        "FREEAGENT_REFRESH_TOKEN": "${input:freeagent-refresh-token}",
        "VENDOR_CATEGORIES": "${input:vendor-categories}",
        "MILEAGE_RATE_PENCE": "${input:mileage-rate-pence}",
        "ORS_API_KEY": "${input:ors-api-key}",
        "GOOGLE_MAPS_API_KEY": "${input:google-maps-api-key}"
      }
    }
  }
}

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

freeagent mcp server in other clients