creditkarma-mcp 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -85,11 +85,11 @@ Credit Karma uses short-lived JWTs. This server handles automatic token refresh
85
85
  #### Option A — scripted (recommended)
86
86
 
87
87
  ```bash
88
- npm run auth # prints the Cookie header to the console
89
- npm run auth -- .env # writes CK_COOKIES=<header> to .env
88
+ npm run auth # prints the CKAT value to the console
89
+ npm run auth -- .env # writes CK_COOKIES=<ckat> to .env
90
90
  ```
91
91
 
92
- Launches Chrome with a dedicated profile at `~/.creditkarma-mcp/chrome-profile`, waits for you to sign in at creditkarma.com, then captures the full Cookie header (including the `CKAT` cookie that holds the access + refresh JWTs). Either prints it (for pasting into Claude Desktop / MCPB) or writes it to the env file you pass. Requires Google Chrome installed locally; the script installs `puppeteer-core` on first run (~1 MB).
92
+ Launches Chrome with a dedicated profile at `~/.creditkarma-mcp/chrome-profile`, waits for you to sign in at creditkarma.com, then captures the `CKAT` cookie (the URL-encoded bundle of access + refresh JWTs). Either prints it (for pasting into Claude Desktop / MCPB) or writes it to the env file you pass. Requires Google Chrome installed locally; the script installs `puppeteer-core` on first run (~1 MB).
93
93
 
94
94
  #### Option B — manual (DevTools)
95
95
 
package/SKILL.md CHANGED
@@ -60,11 +60,11 @@ Or use a `.env` file in the project directory with `CK_COOKIES=<value>`.
60
60
 
61
61
  **Scripted (recommended — source install):**
62
62
  ```bash
63
- npm run auth # prints the Cookie header to the console
64
- npm run auth -- .env # writes CK_COOKIES=<header> to .env
63
+ npm run auth # prints the CKAT value to the console
64
+ npm run auth -- .env # writes CK_COOKIES=<ckat> to .env
65
65
  ```
66
66
 
67
- Launches Chrome with a dedicated profile, waits for sign-in at creditkarma.com, then captures the full Cookie header. Use the printed value with Claude Desktop / MCPB, or the `.env` form when running from source.
67
+ Launches Chrome with a dedicated profile, waits for sign-in at creditkarma.com, then captures the `CKAT` cookie (the URL-encoded bundle of access + refresh JWTs). Use the printed value with Claude Desktop / MCPB, or the `.env` form when running from source.
68
68
 
69
69
  **Manual (DevTools):**
70
70
  1. Log in to [creditkarma.com](https://www.creditkarma.com) in Chrome
package/dist/bundle.js CHANGED
@@ -30859,7 +30859,7 @@ async function main() {
30859
30859
  mcpJsonPath
30860
30860
  };
30861
30861
  const server = new McpServer(
30862
- { name: "creditkarma-mcp", version: "2.0.2" }
30862
+ { name: "creditkarma-mcp", version: "2.0.3" }
30863
30863
  );
30864
30864
  registerAuthTools(server, ctx);
30865
30865
  registerSyncTools(server, ctx);
package/dist/index.js CHANGED
@@ -40,7 +40,7 @@ async function main() {
40
40
  db: initDb(dbPath),
41
41
  mcpJsonPath
42
42
  };
43
- const server = new McpServer({ name: 'creditkarma-mcp', version: '2.0.2' });
43
+ const server = new McpServer({ name: 'creditkarma-mcp', version: '2.0.3' });
44
44
  registerAuthTools(server, ctx);
45
45
  registerSyncTools(server, ctx);
46
46
  registerQueryTools(server, ctx);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creditkarma-mcp",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "MCP server for Credit Karma — natural-language access to your transactions, spending, and accounts",
5
5
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
6
6
  "repository": {