Skip to content
VS Code

Fintable MCP for VS Code

io.github.jasoncbraatz/fintable-mcp

Unofficial MCP server for fintable.io — manage financial categories, rules, and transactions.

client:VS Code transport:stdio runtime:pypi

Install Fintable MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fintable-cookies",
      "description": "FINTABLE_COOKIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fintable-session-cookie",
      "description": "FINTABLE_SESSION_COOKIE",
      "password": true
    }
  ],
  "servers": {
    "fintable-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fintable-mcp"
      ],
      "env": {
        "FINTABLE_COOKIES": "${input:fintable-cookies}",
        "FINTABLE_SESSION_COOKIE": "${input:fintable-session-cookie}"
      }
    }
  }
}

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

Fintable MCP in other clients