This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathserver.json
More file actions
37 lines (37 loc) · 1.09 KB
/
Copy pathserver.json
File metadata and controls
37 lines (37 loc) · 1.09 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.imran-siddique/agentos",
"description": "Build and manage policy-compliant AI agents with safety enforcement and compliance checking",
"repository": {
"url": "https://github.com/imran-siddique/agent-os",
"source": "github",
"subfolder": "extensions/mcp-server"
},
"version": "1.0.1",
"packages": [
{
"registryType": "npm",
"identifier": "agentos-mcp-server",
"version": "1.0.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Policy enforcement mode: strict (block all violations) or permissive (warn only)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "AGENTOS_POLICY_MODE"
},
{
"description": "Log level: debug, info, warn, or error",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "AGENTOS_LOG_LEVEL"
}
]
}
]
}