Credit Karma transactions for Claude β spending by category, merchant, and account summary
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A Model Context Protocol server that connects Claude to Credit Karma, giving you natural-language access to your transactions, spending patterns, and account summaries.
[!WARNING] AI-developed project. This codebase was entirely built and is actively maintained by Claude Code. No human has audited the implementation. Review all code and tool permissions before use.
Ask Claude things like:
By using this MCP server, you acknowledge and agree to the following:
1. This server accesses your own Credit Karma account. Every request is dispatched through your own signed-in browser tab via the fetchproxy extension. You are the one logged in. It does not β and cannot β access anyone else's account.
2. Credit Karma's Terms govern your use of this server, just as they govern your direct use of creditkarma.com. The clauses most relevant here:
You must not sell, transfer, or assign your account to anyone else⦠you may not allow anyone else to log into our Services as you.
CK does contemplate third-party data retrieval at the user's direction (Section 3.7). There is no explicit anti-scraping clause in the membership agreement; Section 4.1 restricts copying or distributing CK content without express prior written consent.
You are agreeing to those terms β read by the maintainer 2026-05-23 β every time you invoke a tool in this server. Critically: this server runs as you, not as a third party logging in on your behalf. You direct the tool.
3. Personal, non-commercial use only. This project is not affiliated with, endorsed by, sponsored by, or in partnership with Intuit, Credit Karma, or any financial institution. It is a personal automation tool that reads your transaction history, spending categories, and account snapshots β the same data Credit Karma already shows you in their app. Do not use it on someone else's account, do not redistribute their content, and do not use it to make trading or lending decisions on behalf of others.
4. This server may break. Credit Karma rotates its internal endpoints; what works today may 404 tomorrow. This is the nature of unofficial integrations.
5. You accept full responsibility for any consequences of using this server in connection with your Credit Karma account β rate limiting, account warnings, suspension, or any enforcement action Intuit takes. If Credit Karma objects to your use, stop using this server. Do not commit your .env to git β your CK session/auth artifacts are credentials, and the Membership Agreement holds you responsible for their confidentiality.
This section is the maintainer's good-faith summary of the terms β it is not legal advice and does not modify or supersede Credit Karma's actual Membership Agreement.
Claude Code β add to .mcp.json in your project:
Claude Desktop β edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Fully quit and relaunch. Then ask: "Sync my Credit Karma transactions".
Credit Karma uses short-lived JWTs. This server handles automatic token refresh β you only need to set up credentials once (or when your session expires).
creditkarma-mcp tries three auth paths in priority order; whichever succeeds first is used. Existing setups keep working unchanged.
CK_COOKIES env var (legacy). Set the full Cookie header in your Claude Desktop config or .env. This is the path shown in the config above.ck_set_session. Once called, the tool persists the Cookie header to .env as CK_COOKIES β so subsequent runs collapse into path 1.CKAT + CKTRKID cookies once at startup from your already-signed-in creditkarma.com tab via the fetchproxy browser extension. After that one read, all CK API calls go directly from Node β the extension is not in the request hot path. Install the fetchproxy extension (Chrome Web Store / Safari .dmg), sign into creditkarma.com, and the MCP just works.Set CK_DISABLE_FETCHPROXY=1 to opt out of the fallback (turns missing credentials into a hard error β useful in headless CI).
.dmg).CK_COOKIES unset in your Claude config.The MCP reads the HttpOnly CKAT + CKTRKID cookies via chrome.cookies.get on the first tool call, then operates direct-to-API from Node. To re-auth (e.g. after Credit Karma signs you out), just sign back in to creditkarma.com.
cookie header β Copy valueThen either paste into CK_COOKIES in your Claude config / .env, or call ck_set_session from within Claude with the Cookie header value.
The server extracts the access and refresh JWTs from the CKAT cookie inside the header and refreshes the access token automatically as needed.
CK_COOKIES (or call ck_set_session).| Tool | What it does |
|---|---|
ck_set_session | Store credentials from your browser Cookie header (auto-extracts JWTs from the CKAT cookie) |
ck_sync_transactions | Sync transactions into the local SQLite database |
ck_list_transactions | List transactions with filters (date, account, category, merchant, amount) |
ck_get_recent_transactions | Fetch the N most recent transactions |
ck_get_spending_by_category | Spending totals grouped by category |
ck_get_spending_by_merchant | Spending totals grouped by merchant |
ck_get_account_summary | Transaction counts and totals by account |
ck_query_sql | Run a read-only SQL query against the local database |
Transactions are synced from Credit Karma's GraphQL API into a local SQLite database (default: ~/.creditkarma-mcp/transactions.db). All query tools run against this local database β fast, offline-capable, and queryable with SQL.
Sync strategy: incremental by default (fetches since last sync date with a 30-day overlap for updates). Use force_full: true to re-fetch everything.
Auto-refresh: if the access token has expired, the server automatically refreshes it before syncing. If the refresh token has also expired, it throws an error asking you to re-authenticate.
| Env var | Description | Default |
|---|---|---|
CK_COOKIES | Full Cookie header from a signed-in creditkarma.com request | (unset β falls back to fetchproxy) |
CK_DISABLE_FETCHPROXY | Set to 1 to skip the fetchproxy fallback (headless / CI) | (unset) |
CK_DB_PATH | Path to SQLite database file | ~/.creditkarma-mcp/transactions.db |
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/creditkarma-mcp)<a href="https://allmcps.com/mcp/creditkarma-mcp"><img src="https://allmcps.com/api/badge/creditkarma-mcp?style=directory" alt="Creditkarma MCP on AllMCPs" /></a>