Skip to content
VS Code

creditkarma mcp for VS Code

io.github.chrischall/creditkarma-mcp

Credit Karma transactions for Claude — spending by category, merchant, and account summary

client:VS Code transport:stdio runtime:npm

Install creditkarma mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ck-cookies",
      "description": "CK_COOKIES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ck-disable-fetchproxy",
      "description": "CK_DISABLE_FETCHPROXY",
      "password": true
    }
  ],
  "servers": {
    "creditkarma-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "creditkarma-mcp"
      ],
      "env": {
        "CK_COOKIES": "${input:ck-cookies}",
        "CK_DISABLE_FETCHPROXY": "${input:ck-disable-fetchproxy}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

creditkarma mcp in other clients