Skip to content
This repository was archived by the owner on Mar 6, 2026. It is now read-only.

Commit 3645ce9

Browse files
docs: add glama.json metadata and Glama badges
- Add glama.json with server metadata, tools, resources, and prompts - Add Glama badge card to MCP server README - Add Glama badge to main README Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 9d8784b commit 3645ce9

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
[![PyPI](https://img.shields.io/pypi/v/agent-os-kernel)](https://pypi.org/project/agent-os-kernel/)
1313
[![Downloads](https://img.shields.io/pypi/dm/agent-os-kernel)](https://pypi.org/project/agent-os-kernel/)
1414
[![OWASP](https://img.shields.io/badge/OWASP_Agentic_Top_10-9/10_Covered-brightgreen)](https://github.com/imran-siddique/agent-governance/blob/master/docs/OWASP-COMPLIANCE.md)
15+
[![Glama](https://glama.ai/mcp/servers/@imran-siddique/agentos-mcp-server/badge?features=false&install=false)](https://glama.ai/mcp/servers/@imran-siddique/agentos-mcp-server)
1516
[![VS Code Extension](https://img.shields.io/badge/VS%20Code-Extension-007ACC?logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=agent-os.agent-os-vscode)
1617
[![Documentation](https://img.shields.io/badge/docs-imran--siddique.github.io-blue)](https://imran-siddique.github.io/agent-os-docs/)
1718
[![Featured in awesome-llm-apps](https://img.shields.io/badge/Featured%20in-awesome--llm--apps-orange)](https://github.com/Shubhamsaboo/awesome-llm-apps)

extensions/mcp-server/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
> **Build safe AI agents with natural language and 0% policy violations**
44
5+
<a href="https://glama.ai/mcp/servers/@imran-siddique/agentos-mcp-server">
6+
<img width="380" height="200" src="https://glama.ai/mcp/servers/@imran-siddique/agentos-mcp-server/badge" />
7+
</a>
8+
59
[![npm version](https://badge.fury.io/js/agentos-mcp-server.svg)](https://www.npmjs.com/package/agentos-mcp-server)
610
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-io.github.imran--siddique%2Fagentos-blue)](https://registry.modelcontextprotocol.io/)
711
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

glama.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"name": "agentos-mcp-server",
3+
"display_name": "Agent OS MCP Server",
4+
"description": "AI agent governance with policy enforcement, code safety verification, multi-model hallucination detection (CMVK), trust attestation (IATP), and immutable audit trails. Covers 9/10 OWASP Agentic Top 10 risks.",
5+
"repository": "https://github.com/imran-siddique/agent-os",
6+
"homepage": "https://imransiddique.com",
7+
"author": {
8+
"name": "Imran Siddique",
9+
"url": "https://github.com/imran-siddique"
10+
},
11+
"license": "MIT",
12+
"categories": ["security", "governance", "safety", "code-review", "audit"],
13+
"tags": ["ai-agents", "governance", "owasp", "policy-enforcement", "trust", "mcp"],
14+
"tools": [
15+
{
16+
"name": "verify_code_safety",
17+
"description": "Check generated code for dangerous patterns (DROP TABLE, rm -rf, hardcoded secrets)"
18+
},
19+
{
20+
"name": "cmvk_verify",
21+
"description": "Multi-model claim verification to detect hallucinations"
22+
},
23+
{
24+
"name": "cmvk_review",
25+
"description": "Multi-model code review for security and bugs"
26+
},
27+
{
28+
"name": "kernel_execute",
29+
"description": "Execute actions with policy enforcement (strict/permissive/audit)"
30+
},
31+
{
32+
"name": "iatp_sign",
33+
"description": "Sign trust attestations for inter-agent communication"
34+
},
35+
{
36+
"name": "iatp_verify",
37+
"description": "Verify trust relationships between agents"
38+
},
39+
{
40+
"name": "iatp_reputation",
41+
"description": "Query/modify agent reputation scores"
42+
},
43+
{
44+
"name": "get_audit_log",
45+
"description": "Retrieve immutable audit trail"
46+
}
47+
],
48+
"resources": [
49+
"vfs://{agent_id}/mem/* - Agent memory",
50+
"vfs://{agent_id}/policy/* - Agent policies (read-only)",
51+
"audit://{agent_id}/log - Audit trail (read-only)"
52+
],
53+
"prompts": [
54+
"governed_agent - Standard governed agent instructions",
55+
"verify_claim - CMVK verification template",
56+
"safe_execution - Safe action execution template"
57+
]
58+
}

0 commit comments

Comments
 (0)