An MCP (Model Context Protocol) server that connects your Finwise personal finance data to LLMs, enabling natural language queries like:
- "What's my net worth?"
- "How much did I spend on takeaways last month?"
- "Show me all my credit card transactions"
- "What's my budget for groceries?"
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"finwise": {
"command": "uvx",
"args": ["--from", "git+https://github.com/rameezk/finwise-mcp", "finwise-mcp"],
"env": {
"FINWISE_API_KEY": "your-api-key"
}
}
}
}Restart Claude Desktop (Cmd+Q, then reopen).
Create .mcp.json in your project directory:
{
"mcpServers": {
"finwise": {
"command": "uvx",
"args": ["--from", "git+https://github.com/rameezk/finwise-mcp", "finwise-mcp"],
"env": {
"FINWISE_API_KEY": "your-api-key"
}
}
}
}Restart Claude Code and approve the MCP server when prompted.
claude mcp add finwise -- nix run github:rameezk/finwise-mcpAdd to your MCP config:
{
"mcpServers": {
"finwise": {
"command": "nix",
"args": ["run", "github:rameezk/finwise-mcp"],
"env": {
"FINWISE_API_KEY": "your-api-key"
}
}
}
}Get your Finwise API key from Settings > API Keys in the Finwise Dashboard.
List all financial accounts with names, types, currencies, and balances.
Example: "What accounts do I have?"
List all transaction categories with IDs and names.
Example: "What categories do I have?"
List transactions with optional filters and pagination.
Filters:
from_date/to_date- Date range (YYYY-MM-DD)transaction_types- Filter by type:["debit", "credit"]category_ids- Filter by categorypage_number/page_size- Pagination
Examples:
- "Show me my transactions from last month"
- "How much did I spend on takeaways?"
- "List all my credit card debits"
Get budget totals grouped by category and transaction type.
Example: "What's my budget for groceries?"
Get aggregated net worth over time with historical snapshots.
Example: "What's my net worth?"
-
Clone the repository:
git clone https://github.com/rameezk/finwise-mcp.git cd finwise-mcp -
Set up environment:
cp .env.example .env # Edit .env and add your FINWISE_API_KEY -
Enter development shell:
direnv allow # if using direnv # or nix develop
-
Install dependencies:
uv sync
uv run mcp dev src/finwise_mcp/server.pyThis opens a web UI where you can test individual tools interactively.
If developing locally and want to test with Claude, use the full nix path:
{
"mcpServers": {
"finwise": {
"command": "/path/to/.nix-profile/bin/nix",
"args": ["develop", "/path/to/finwise-mcp", "--command", "uv", "run", "finwise-mcp"],
"env": {
"FINWISE_API_KEY": "your-api-key"
}
}
}
}MIT