PluginBench
MCP Server

Fintable MCP MCP Server

io.github.jasoncbraatz/fintable-mcp

What is the Fintable MCP MCP server?

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

How to install Fintable MCP

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • FINTABLE_COOKIES
    secret

    Full cookie header string from Chrome DevTools for fintable.io authentication. Not needed if using rookiepy auto-extraction.

  • FINTABLE_SESSION_COOKIE
    secret

    Just the fintable_session cookie value (alternative to FINTABLE_COOKIES).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "fintable-mcp": {
      "command": "uvx",
      "args": [
        "fintable-mcp"
      ],
      "env": {
        "FINTABLE_COOKIES": "<YOUR_FINTABLE_COOKIES>",
        "FINTABLE_SESSION_COOKIE": "<YOUR_FINTABLE_SESSION_COOKIE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "fintable-mcp": {
      "command": "uvx",
      "args": [
        "fintable-mcp"
      ],
      "env": {
        "FINTABLE_COOKIES": "<YOUR_FINTABLE_COOKIES>",
        "FINTABLE_SESSION_COOKIE": "<YOUR_FINTABLE_SESSION_COOKIE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "fintable-mcp": {
      "command": "uvx",
      "args": [
        "fintable-mcp"
      ],
      "env": {
        "FINTABLE_COOKIES": "<YOUR_FINTABLE_COOKIES>",
        "FINTABLE_SESSION_COOKIE": "<YOUR_FINTABLE_SESSION_COOKIE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "fintable-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "fintable-mcp"
      ],
      "env": {
        "FINTABLE_COOKIES": "<YOUR_FINTABLE_COOKIES>",
        "FINTABLE_SESSION_COOKIE": "<YOUR_FINTABLE_SESSION_COOKIE>"
      }
    }
  }
}
Claude Code
claude mcp add fintable-mcp --env FINTABLE_COOKIES=<YOUR_FINTABLE_COOKIES> --env FINTABLE_SESSION_COOKIE=<YOUR_FINTABLE_SESSION_COOKIE> -- uvx fintable-mcp

Related MCP servers

Query domain expiration data from domain-monitor.io via AI assistants like Claude.

View repository →