@1claw/mcp 0.41.0 → 0.41.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +78 -78
package/README.md CHANGED
@@ -51,7 +51,7 @@ pnpm run build
51
51
  | `ONECLAW_AGENT_TOKEN` | stdio* | — | **Legacy.** Static Bearer JWT (expires in ~1 h, no auto-refresh). |
52
52
  | `ONECLAW_VAULT_ID` | No | — | UUID of the vault. Auto-discovered when using `ONECLAW_AGENT_API_KEY`. |
53
53
  | `ONECLAW_DPOP` | No | `false` | Set to `true` to enable DPoP (RFC 9449) proof-of-possession. Binds agent tokens to the MCP client's ephemeral P-256 keypair so stolen tokens are unusable without the matching private key. |
54
- | `ONECLAW_BASE_URL` | No | `https://api.1claw.xyz` | Vault API base URL. Intents tools (`simulate_transaction`, `submit_transaction`, etc.) call this host; for TEE signing, point it at **Shroud** or **Intents** (e.g. `https://shroud.1claw.xyz` or `https://intents.1claw.xyz`) if your deployment routes signing there. Self-hosted: your Vault/Shroud URL. |
54
+ | `ONECLAW_BASE_URL` | No | `https://api.1claw.xyz` | Vault API base URL. Intents tools (`simulate_transaction`, `submit_transaction`, etc.) call this host; for TEE signing, point it at **Shroud** or **Intents** (e.g. `https://shroud.1claw.xyz` or `https://intents.1claw.xyz`) if your deployment routes signing there. **Required when the agent has `intents_require_tee` or `execution_require_tee` enabled** — those flags reject direct Vault calls (403), so `ONECLAW_BASE_URL` must point to Shroud. Self-hosted: your Vault/Shroud URL. |
55
55
  | `MCP_TRANSPORT` | No | `stdio` | Transport mode: `stdio` or `httpStream`. |
56
56
  | `PORT` | No | `8080` | HTTP port (httpStream mode only). |
57
57
 
package/package.json CHANGED
@@ -1,82 +1,82 @@
1
1
  {
2
- "name": "@1claw/mcp",
3
- "version": "0.41.0",
4
- "mcpName": "io.github.1clawAI/1claw-mcp",
5
- "description": "MCP server for the 1claw secrets vault — lets AI agents fetch, store, and manage secrets at runtime",
6
- "type": "module",
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "default": "./dist/index.js"
2
+ "name": "@1claw/mcp",
3
+ "version": "0.41.1",
4
+ "mcpName": "io.github.1clawAI/1claw-mcp",
5
+ "description": "MCP server for the 1claw secrets vault — lets AI agents fetch, store, and manage secrets at runtime",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "./security": {
15
+ "types": "./dist/security/index.d.ts",
16
+ "default": "./dist/security/index.js"
17
+ }
13
18
  },
14
- "./security": {
15
- "types": "./dist/security/index.d.ts",
16
- "default": "./dist/security/index.js"
19
+ "bin": {
20
+ "1claw-mcp": "dist/index.js"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "scripts": {
28
+ "build": "tsc",
29
+ "prepublishOnly": "npm run build",
30
+ "dev": "npx fastmcp dev src/index.ts",
31
+ "inspect": "npx fastmcp inspect src/index.ts",
32
+ "start": "node dist/index.js",
33
+ "test": "vitest run",
34
+ "test:watch": "vitest"
35
+ },
36
+ "keywords": [
37
+ "1claw",
38
+ "mcp",
39
+ "model-context-protocol",
40
+ "secrets",
41
+ "vault",
42
+ "ai-agents",
43
+ "hsm",
44
+ "claude",
45
+ "cursor",
46
+ "fastmcp",
47
+ "agent-tools"
48
+ ],
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "https://github.com/1clawAI/1claw-mcp.git"
55
+ },
56
+ "homepage": "https://1claw.xyz",
57
+ "license": "MIT",
58
+ "dependencies": {
59
+ "@hono/node-server": "^1.19.13",
60
+ "fastmcp": "^3.33.0",
61
+ "glob": "^11.1.0",
62
+ "hono": "^4.12.25",
63
+ "koa": "^3.1.2",
64
+ "undici": "^7.28.0",
65
+ "zod": "^3.24.0"
66
+ },
67
+ "devDependencies": {
68
+ "@types/node": "^20.19.33",
69
+ "typescript": "^5.5.0",
70
+ "vitest": "^4.1.0"
71
+ },
72
+ "overrides": {
73
+ "axios": "^1.16.0",
74
+ "fast-uri": "^3.1.2",
75
+ "form-data": "^4.0.6",
76
+ "hono": "^4.12.25",
77
+ "undici": "^7.28.0"
78
+ },
79
+ "engines": {
80
+ "node": ">=20.0.0"
17
81
  }
18
- },
19
- "bin": {
20
- "1claw-mcp": "dist/index.js"
21
- },
22
- "files": [
23
- "dist",
24
- "README.md",
25
- "LICENSE"
26
- ],
27
- "scripts": {
28
- "build": "tsc",
29
- "prepublishOnly": "npm run build",
30
- "dev": "npx fastmcp dev src/index.ts",
31
- "inspect": "npx fastmcp inspect src/index.ts",
32
- "start": "node dist/index.js",
33
- "test": "vitest run",
34
- "test:watch": "vitest"
35
- },
36
- "keywords": [
37
- "1claw",
38
- "mcp",
39
- "model-context-protocol",
40
- "secrets",
41
- "vault",
42
- "ai-agents",
43
- "hsm",
44
- "claude",
45
- "cursor",
46
- "fastmcp",
47
- "agent-tools"
48
- ],
49
- "publishConfig": {
50
- "access": "public"
51
- },
52
- "repository": {
53
- "type": "git",
54
- "url": "https://github.com/1clawAI/1claw-mcp.git"
55
- },
56
- "homepage": "https://1claw.xyz",
57
- "license": "MIT",
58
- "dependencies": {
59
- "@hono/node-server": "^1.19.13",
60
- "fastmcp": "^3.33.0",
61
- "glob": "^11.1.0",
62
- "hono": "^4.12.25",
63
- "koa": "^3.1.2",
64
- "undici": "^7.28.0",
65
- "zod": "^3.24.0"
66
- },
67
- "devDependencies": {
68
- "@types/node": "^20.19.33",
69
- "typescript": "^5.5.0",
70
- "vitest": "^4.1.0"
71
- },
72
- "overrides": {
73
- "axios": "^1.16.0",
74
- "fast-uri": "^3.1.2",
75
- "form-data": "^4.0.6",
76
- "hono": "^4.12.25",
77
- "undici": "^7.28.0"
78
- },
79
- "engines": {
80
- "node": ">=20.0.0"
81
- }
82
82
  }