-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
52 lines (52 loc) · 1.58 KB
/
Copy pathserver.json
File metadata and controls
52 lines (52 loc) · 1.58 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.VladUZH/sidclaw-governance-mcp",
"description": "Governance proxy for MCP servers — policy evaluation, human approval, audit trails.",
"repository": {
"url": "https://github.com/sidclawhq/platform",
"source": "github"
},
"version": "0.1.13",
"packages": [
{
"registryType": "npm",
"identifier": "@sidclaw/sdk",
"version": "0.1.13",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "SidClaw API key for policy evaluation and audit logging",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "SIDCLAW_API_KEY"
},
{
"description": "Agent identity for policy matching and audit trails",
"isRequired": true,
"format": "string",
"name": "SIDCLAW_AGENT_ID"
},
{
"description": "Command for the upstream MCP server (e.g., npx)",
"isRequired": true,
"format": "string",
"name": "SIDCLAW_UPSTREAM_CMD"
},
{
"description": "Comma-separated args for the upstream MCP server",
"isRequired": true,
"format": "string",
"name": "SIDCLAW_UPSTREAM_ARGS"
},
{
"description": "Approval mode: error (default, returns immediately) or block (waits for approval)",
"format": "string",
"name": "SIDCLAW_APPROVAL_MODE"
}
]
}
]
}