@kakunin/mcp 0.2.3 → 0.2.4

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
@@ -1,10 +1,10 @@
1
- # @kakunin/mcp
1
+ # @kakunin/mcp — MCP server for AI agent identity & compliance
2
2
 
3
- [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/nqzai/kakunin-mcp/badge)](https://scorecard.dev/viewer/?uri=github.com/nqzai/kakunin-mcp)
4
- [![kakunin-mcp MCP server](https://glama.ai/mcp/servers/nqzai/kakunin-mcp/badges/score.svg)](https://glama.ai/mcp/servers/nqzai/kakunin-mcp)
3
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/kakunin-ai/kakunin-mcp/badge)](https://scorecard.dev/viewer/?uri=github.com/kakunin-ai/kakunin-mcp)
4
+ [![kakunin-mcp MCP server](https://glama.ai/mcp/servers/kakunin-ai/kakunin-mcp/badges/score.svg)](https://glama.ai/mcp/servers/kakunin-ai/kakunin-mcp)
5
5
 
6
- <a href="https://glama.ai/mcp/servers/nqzai/kakunin-mcp">
7
- <img width="380" height="200" src="https://glama.ai/mcp/servers/nqzai/kakunin-mcp/badges/card.svg" alt="kakunin-mcp MCP server" />
6
+ <a href="https://glama.ai/mcp/servers/kakunin-ai/kakunin-mcp">
7
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/kakunin-ai/kakunin-mcp/badges/card.svg" alt="kakunin-mcp MCP server" />
8
8
  </a>
9
9
 
10
10
  Model Context Protocol server for the [Kakunin](https://kakunin.ai) AI agent compliance API. Lets AI agents self-verify scope, check their own risk score, and log behavioral events — all from within Claude, Cursor, or any MCP-compatible runtime.
@@ -77,3 +77,19 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
77
77
  Use a `kak_test_...` key for development — hits the sandbox CA, no cost, 100 free certs/day.
78
78
 
79
79
  Full docs at [docs.kakunin.ai](https://docs.kakunin.ai).
80
+
81
+ ## Contributors
82
+
83
+ <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
84
+ <!-- ALL-CONTRIBUTORS-BADGE:END -->
85
+
86
+ Thanks to everyone who contributes ([emoji key](https://allcontributors.org/docs/en/emoji-key)) — code and non-code alike:
87
+
88
+ <!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
89
+ <!-- prettier-ignore-start -->
90
+ <!-- markdownlint-disable -->
91
+ <!-- markdownlint-restore -->
92
+ <!-- prettier-ignore-end -->
93
+ <!-- ALL-CONTRIBUTORS-LIST:END -->
94
+
95
+ Contributions of any kind are welcome — this project follows the [all-contributors](https://allcontributors.org) spec.
package/dist/index.js CHANGED
@@ -199,7 +199,7 @@ var auditLogAppendInputSchema = z2.object({
199
199
  event_type: z2.enum(ACTION_TYPES).describe(
200
200
  'Type of behavioral event being logged. Use "transaction_initiated" for financial operations, "data_mutation" for write/delete ops, "api_call" for standard API calls.'
201
201
  ),
202
- metadata: z2.record(z2.unknown()).describe(
202
+ metadata: z2.record(z2.string(), z2.unknown()).describe(
203
203
  "Arbitrary key-value pairs describing the event. For transactions: include amount, currency, venue. For data ops: include resource_type, resource_id, operation. Avoid PII \u2014 this is stored in the immutable audit log."
204
204
  ),
205
205
  session_id: z2.string().optional().describe("Optional session ID for grouping related events in the audit trail.")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kakunin/mcp",
3
- "version": "0.2.3",
4
- "mcpName": "io.github.nqzai/kakunin",
3
+ "version": "0.2.4",
4
+ "mcpName": "io.github.kakunin-ai/kakunin",
5
5
  "description": "Kakunin MCP server — lets AI agents query their own scope, risk score, and log behavioral events",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -38,17 +38,17 @@
38
38
  "homepage": "https://kakunin.ai",
39
39
  "repository": {
40
40
  "type": "git",
41
- "url": "git+https://github.com/nqzai/kakunin-mcp.git"
41
+ "url": "git+https://github.com/kakunin-ai/kakunin-mcp.git"
42
42
  },
43
43
  "dependencies": {
44
44
  "@modelcontextprotocol/sdk": "^1.11.0",
45
- "zod": "^3.23.0"
45
+ "zod": "^4.4.3"
46
46
  },
47
47
  "devDependencies": {
48
- "@types/node": "^20.0.0",
48
+ "@types/node": "^26.1.1",
49
49
  "tsup": "^8.0.0",
50
- "typescript": "^5.4.0",
51
- "vitest": "^1.6.0"
50
+ "typescript": "^6.0.0",
51
+ "vitest": "^4.1.10"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "typescript": ">=5.0.0"
@@ -62,6 +62,6 @@
62
62
  "node": ">=18.0.0"
63
63
  },
64
64
  "bugs": {
65
- "url": "https://github.com/nqzai/kakunin-mcp/issues"
65
+ "url": "https://github.com/kakunin-ai/kakunin-mcp/issues"
66
66
  }
67
67
  }