-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathglama.json
More file actions
67 lines (67 loc) · 2.26 KB
/
glama.json
File metadata and controls
67 lines (67 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://glama.ai/mcp/schemas/server.json",
"name": "agentos-mcp-server",
"display_name": "Agent OS MCP Server",
"description": "AI agent governance with policy enforcement, code safety verification, multi-model hallucination detection (CMVK), trust attestation (IATP), and immutable audit trails. Covers 10/10 OWASP Agentic Top 10 risks.",
"repository": "https://github.com/microsoft/agent-governance-toolkit",
"homepage": "https://github.com/microsoft/agent-governance-toolkit",
"maintainers": [
"microsoft"
],
"author": {
"name": "Microsoft Corporation",
"url": "https://github.com/microsoft/agent-governance-toolkit"
},
"license": "MIT",
"categories": ["security", "governance", "safety", "code-review", "audit"],
"tags": ["ai-agents", "governance", "owasp", "policy-enforcement", "trust", "mcp"],
"tools": [
{
"name": "verify_code_safety",
"description": "Check generated code for dangerous patterns (DROP TABLE, rm -rf, hardcoded secrets)"
},
{
"name": "cmvk_verify",
"description": "Multi-model claim verification to detect hallucinations"
},
{
"name": "cmvk_review",
"description": "Multi-model code review for security and bugs"
},
{
"name": "kernel_execute",
"description": "Execute actions with policy enforcement (strict/permissive/audit)"
},
{
"name": "iatp_sign",
"description": "Sign trust attestations for inter-agent communication"
},
{
"name": "iatp_verify",
"description": "Verify trust relationships between agents"
},
{
"name": "iatp_reputation",
"description": "Query/modify agent reputation scores"
},
{
"name": "get_audit_log",
"description": "Retrieve immutable audit trail"
}
],
"resources": [
"vfs://{agent_id}/mem/* - Agent memory",
"vfs://{agent_id}/policy/* - Agent policies (read-only)",
"audit://{agent_id}/log - Audit trail (read-only)"
],
"prompts": [
"governed_agent - Standard governed agent instructions",
"verify_claim - CMVK verification template",
"safe_execution - Safe action execution template"
],
"related_servers": [
"microsoft/agentmesh-mcp-server",
"microsoft/agent-hypervisor",
"microsoft/agent-sre"
]
}