@yobekasbah/mcp-server 3.0.2 → 3.0.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,4 +1,4 @@
1
- # @kasbah/mcp-server
1
+ # @yobekasbah/mcp-server
2
2
 
3
3
  **The trust layer for agentic AI** — drop into Claude Desktop, Claude Code, Cursor, Cline, or any MCP-compatible host. Govern, sign, and verify every action your agent takes. Every decision gets a verdict + an Ed25519-signed receipt that's verifiable offline, forever.
4
4
 
@@ -9,7 +9,7 @@
9
9
  ## Install
10
10
 
11
11
  ```bash
12
- npx -y @kasbah/mcp-server
12
+ npx -y @yobekasbah/mcp-server
13
13
  ```
14
14
 
15
15
  That's it. No global install needed.
@@ -31,7 +31,7 @@ Add to `~/.claude/mcp.json` (or `mcp.json` for Cursor / Cline / your host):
31
31
  "mcpServers": {
32
32
  "kasbah": {
33
33
  "command": "npx",
34
- "args": ["-y", "@kasbah/mcp-server"],
34
+ "args": ["-y", "@yobekasbah/mcp-server"],
35
35
  "env": {
36
36
  "KASBAH_API": "https://kasbah-api.fly.dev",
37
37
  "KASBAH_API_KEY": "ksk_your_key_here",
@@ -162,7 +162,7 @@ Every `kasbah_status` response includes a one-click feedback `mailto:` so you ca
162
162
  ```bash
163
163
  node -e "
164
164
  const { spawn } = require('child_process');
165
- const p = spawn('npx', ['@kasbah/mcp-server'], { stdio: ['pipe', 'pipe', 'inherit'] });
165
+ const p = spawn('npx', ['@yobekasbah/mcp-server'], { stdio: ['pipe', 'pipe', 'inherit'] });
166
166
  p.stdin.write(JSON.stringify({ jsonrpc:'2.0', id:1, method:'initialize', params:{} }) + '\n');
167
167
  p.stdout.on('data', d => { console.log(d.toString()); p.kill(); });
168
168
  "
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yobekasbah/mcp-server",
3
- "version": "3.0.2",
3
+ "version": "3.0.4",
4
4
  "mcpName": "io.github.Al-Adnane/kasbah-mcp",
5
5
  "description": "Kasbah MCP Server — cryptographic trust layer for agentic AI. Govern, sign, and verify every agent action from Claude Code, Cursor, or any MCP host.",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -34,7 +34,7 @@
34
34
  *
35
35
  * "kasbah": {
36
36
  * "command": "npx",
37
- * "args": ["-y", "@kasbah/mcp-server"],
37
+ * "args": ["-y", "@yobekasbah/mcp-server"],
38
38
  * "env": {
39
39
  * "KASBAH_API": "https://kasbah-api.fly.dev",
40
40
  * "KASBAH_API_KEY": "ksk_…your key from kasbah-api.fly.dev/v1/auth/signup…",
@@ -59,7 +59,7 @@ const API_KEY = process.env.KASBAH_API_KEY || null;
59
59
  const VERIFY_BASE = (process.env.KASBAH_VERIFY_BASE || 'https://kasbah-api.fly.dev/demo/verify').replace(/\/+$/, '');
60
60
 
61
61
  const MCP_VERSION = '2024-11-05';
62
- const SERVER_INFO = { name: 'kasbah', version: '3.0.0' };
62
+ const SERVER_INFO = { name: 'kasbah', version: require('../package.json').version };
63
63
 
64
64
  const TOOLS = [
65
65
  {