Labsco
jasoncbraatz logo

Fintable MCP

โ˜… 1

from jasoncbraatz

Unofficial MCP server for fintable.io โ€” manage financial categories, rules, and transactions through AI assistants instead of clicking through multi-step wizards.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

fintable-mcp

An unofficial MCP (Model Context Protocol) server for fintable.io, enabling AI assistants like Claude to manage your financial categories, rules, and transactions directly โ€” no more clicking through multi-step wizards.

Note: This is a community project, not officially supported by fintable.io. It works by communicating with Fintable's Laravel Livewire 3 backend using your browser session. If you're the Fintable developer and would like to collaborate on an official MCP server or public API, please open an issue โ€” we'd love to work with you! ๐Ÿค


What it does

Once installed, you can ask Claude or your favorite MCP Client things like:

  • "Create these expense categories: Office Supplies, Shipping, Packaging, Equipment Rental, Software Subscriptions"
  • "Create rules: 'Staples' โ†’ Office Supplies, 'UPS' โ†’ Shipping, 'USPS' โ†’ Shipping"
  • "Run all rules to categorize my transactions"
  • "What's my current account balance at Ally Bank?"
  • "List all my categorization rules"

No more going through a 3-page wizard 20 times to set up 20 categories. Just tell Claude what you need.


Tools provided

Read Operations

ToolDescription
fintable_list_accountsList all connected bank accounts with balances
fintable_list_categoriesList all transaction categories
fintable_list_rulesList categorization rules (with pagination)
fintable_list_transactionsList/search transactions with optional filtering

Write Operations

ToolDescription
fintable_create_categoryCreate a single category
fintable_create_bulk_categoriesCreate up to 50 categories at once
fintable_create_ruleCreate a categorization rule
fintable_create_bulk_rulesCreate multiple rules at once
fintable_run_all_rulesExecute all rules on uncategorized transactions
fintable_delete_ruleDelete a categorization rule
fintable_sync_accountsTrigger bank account sync via Plaid
fintable_resync_spreadsheetsPush updates to Airtable/Google Sheets

Authentication

This server authenticates using your fintable.io browser session cookies โ€” the same cookies your browser uses when you're logged in.

Cookie resolution order:

  1. Persisted cookie jar โ€” If --persist-cookies is active and ~/.fintable-mcp-cookies.json exists with fresh cookies, use those. Self-updates from server Set-Cookie headers.
  2. rookiepy โ€” If installed, cookies are extracted fresh from Chrome's local database on every server start. Zero maintenance.
  3. FINTABLE_COOKIES env var โ€” Full cookie string from Chrome DevTools (fallback if rookiepy isn't installed).
  4. FINTABLE_SESSION_COOKIE env var โ€” Just the session cookie value (simplest manual option).

When --persist-cookies is active, whichever method provides the initial cookies will also seed the jar. On subsequent runs, the jar takes priority โ€” and every server response refreshes it automatically.

Your credentials are never stored to disk by this server โ€” they live only in memory while the server is running.

Session Expiration

If you're using rookiepy (recommended), session expiration is handled automatically โ€” fresh cookies are pulled from Chrome on every server start. Just make sure you stay logged into fintable.io in Chrome.

If you're using manual cookie export, your cookies will eventually expire. When they do, the server will return an authentication error. Re-export your cookies from Chrome and update the FINTABLE_COOKIES environment variable.


How it works (for the curious / developers)

Fintable.io is a Laravel application using Livewire 3 + Alpine.js for its frontend โ€” there's no public REST API. This MCP server:

  1. Authenticates using your browser session cookies (CSRF token + session cookie)
  2. Fetches pages to extract Livewire component snapshots from wire:snapshot HTML attributes
  3. Makes Livewire protocol calls โ€” POST requests to the /livewire-{hash}/update endpoint with component snapshots, method calls, and property updates
  4. Parses HTML responses to extract structured data (accounts, categories, rules, transactions)

The Livewire update path includes a hash (e.g., /livewire-5c7ce5a8/update) that can change when the app is redeployed. The server auto-discovers this path from the data-update-uri HTML attribute on each page load, so it stays resilient across deployments.


Security Model

This server runs locally on your machine as a stdio subprocess of your MCP client. It:

  • Never exposes a network port
  • Never stores credentials to disk
  • Only communicates with fintable.io using your existing browser session
  • Runs as a single-user, single-client process

By default, session cookies are kept in memory only while the server is running. With rookiepy, they're extracted fresh from Chrome on each launch โ€” no environment variables or config files needed.

If --persist-cookies is enabled, cookies are saved to ~/.fintable-mcp-cookies.json (a dotfile in your home directory). This is an opt-in tradeoff: convenience of a self-refreshing session in exchange for cookies existing on disk. Delete the file at any time to revoke the session.


Disclaimer

This project is not affiliated with, endorsed by, or officially supported by fintable.io. It was built by reverse-engineering the Livewire 3 frontend protocol. Use at your own risk โ€” the underlying Livewire protocol may change without notice.