creditkarma-mcp 2.0.6 → 2.0.7

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
@@ -188,6 +188,10 @@ npm run test:coverage # coverage report (CI enforces 100% on src/**)
188
188
 
189
189
  Versions are bumped automatically by the **Tag & Bump** GitHub Action (`.github/workflows/tag-and-bump.yml`). Do not bump manually.
190
190
 
191
+ ### Pull requests
192
+
193
+ Changes land via PR, including for solo work — release notes are generated from merged PRs only (config in `.github/release.yml`). Apply one of these labels to every PR: `enhancement`, `bug`, `security`, `refactor`, `documentation`, `test`, `dependencies`, `ci`, or `ignore-for-release` (excludes from notes). The PR title becomes the changelog bullet, so write it like a user-facing entry.
194
+
191
195
  ### Project structure
192
196
 
193
197
  ```
package/dist/bundle.js CHANGED
@@ -31718,7 +31718,7 @@ async function main() {
31718
31718
  mcpJsonPath
31719
31719
  };
31720
31720
  const server = new McpServer(
31721
- { name: "creditkarma-mcp", version: "2.0.6" }
31721
+ { name: "creditkarma-mcp", version: "2.0.7" }
31722
31722
  );
31723
31723
  registerAuthTools(server, ctx);
31724
31724
  registerSyncTools(server, ctx);
package/dist/index.js CHANGED
@@ -58,7 +58,7 @@ async function main() {
58
58
  db: initDb(dbPath),
59
59
  mcpJsonPath
60
60
  };
61
- const server = new McpServer({ name: 'creditkarma-mcp', version: '2.0.6' });
61
+ const server = new McpServer({ name: 'creditkarma-mcp', version: '2.0.7' });
62
62
  registerAuthTools(server, ctx);
63
63
  registerSyncTools(server, ctx);
64
64
  registerQueryTools(server, ctx);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creditkarma-mcp",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "mcpName": "io.github.chrischall/creditkarma-mcp",
5
5
  "description": "MCP server for Credit Karma — natural-language access to your transactions, spending, and accounts",
6
6
  "author": "Claude Code (AI) <https://www.anthropic.com/claude>",
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/chrischall/creditkarma-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "2.0.6",
9
+ "version": "2.0.7",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "creditkarma-mcp",
14
- "version": "2.0.6",
14
+ "version": "2.0.7",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  },