-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
55 lines (55 loc) · 1.8 KB
/
Copy pathserver.json
File metadata and controls
55 lines (55 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.1clawAI/1claw-mcp",
"title": "1Claw Vault",
"description": "HSM-backed vault secrets for AI agents (JIT fetch) plus prompt-injection and threat scanning.",
"websiteUrl": "https://1claw.xyz",
"repository": {
"url": "https://github.com/1clawAI/1claw-mcp",
"source": "github"
},
"version": "0.41.3",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@1claw/mcp",
"version": "0.41.3",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ONECLAW_AGENT_API_KEY",
"description": "Agent API key (ocv_...). Exchanged for a short-lived JWT; auto-discovers agent ID and vault. Recommended for stdio.",
"isRequired": false,
"isSecret": true
},
{
"name": "ONECLAW_AGENT_ID",
"description": "Optional agent UUID when pinning identity (usually auto-discovered from the API key).",
"isRequired": false,
"isSecret": false
},
{
"name": "ONECLAW_VAULT_ID",
"description": "Optional vault UUID when the agent can access multiple vaults.",
"isRequired": false,
"isSecret": false
},
{
"name": "ONECLAW_BASE_URL",
"description": "Vault API base URL (default https://api.1claw.xyz).",
"isRequired": false,
"isSecret": false
},
{
"name": "ONECLAW_LOCAL_ONLY",
"description": "Set to true for security-only mode (inspect_content only; no vault credentials).",
"isRequired": false,
"isSecret": false
}
]
}
]
}