{"$schema":"https://wellknown.network/schemas/agent-record-v1.json","schemaVersion":"1","id":"ag_77uggs8wrcds","handle":"capforge-mcp","url":"https://wellknown.network/agents/capforge-mcp","links":{"self":"https://wellknown.network/agents/capforge-mcp/record.json","html":"https://wellknown.network/agents/capforge-mcp","markdown":"https://wellknown.network/agents/capforge-mcp/record.md","api":"https://wellknown.network/api/v1/agents/capforge-mcp","status":"https://wellknown.network/api/v1/agents/capforge-mcp/status","claim":"https://wellknown.network/agents/capforge-mcp/claim","claimApi":"https://wellknown.network/api/v1/claims","claimDescriptor":"https://wellknown.network/agents/capforge-mcp/claim.json","badge":"https://wellknown.network/agents/capforge-mcp/badge.svg","openapi":"https://wellknown.network/openapi.json"},"ard":{"identifier":"urn:air::server:capforge-mcp","type":"application/mcp-server-card+json"},"kind":"mcp_server","declared":{"name":"capforge-mcp","summary":"MCP adapter for CapForge — ACM-controlled AI agent tool execution via the Model Context Protocol","description":"# CapForge MCP Adapter\n\n**ACM-controlled AI agent tool execution via the Model Context Protocol.**\n\n---\n\n## Overview\n\n`capforge-mcp` is the official [Model Context Protocol](https://modelcontextprotocol.io/) integration for [CapForge](https://github.com/shashank123r/capforge). It lets you protect every MCP tool invocation against an [Agent Capability Manifest (ACM)](https://github.com/shashank123r/capforge/blob/main/SPEC.md) — a signed policy document that defines what actions an agent is allowed to perform.\n\nEvery tool call passes through `ACM.check()` before execution. Unauthorized attempts are rejected with a structured `MCPPermissionError`.\n\n## Installation\n\n```bash\npip install capforge-mcp\n```\n\nRequires Python 3.12+.\n\n## Quick Start\n\n```python\nfrom capforge import ACM\nfrom capforge_mcp import ACMProtectedMCP\n\n# Load your signed capability manifest\nacm = ACM.load(\"manifest.json\")\n\n# Create an ACM-protected MCP server\nmcp = ACMProtectedMCP(\"MyServer\", acm=acm)\n\n# Register a protected tool\n@mcp.tool(resource=\"email\", action=\"send\")\ndef send_email(to: str, body: str) -> str:\n    return f\"Sent to {to}: {body}\"\n\n# Run the server\nmcp.run(transport=\"stdio\")\n```\n\n## API\n\n| Symbol | Description |\n|:-------|:------------|\n| `ACMProtectedMCP` | `FastMCP` wrapper with built-in ACM authorization |\n| `acm_protected` | Decorator for adding ACM checks to any MCP tool |\n| `MCPPermissionError` | Structured error raised on denied tool invocations |\n\n## Dependency\n\n`capforge-mcp` requires the [capforge](https://pypi.org/project/capforge/) core package (`pip install capforge`) and the [MCP Python SDK](https://pypi.org/project/mcp/) (`mcp>=1.28,<2`). Both are installed automatically as dependencies.\n\n## License\n\nApache 2.0","publisher":null,"homepage":"https://github.com/shashank123r/capforge","repository":"https://github.com/shashank123r/capforge","version":"0.6.1","license":"Apache-2.0","protocols":["mcp"],"tags":["capforge","acm","mcp","agent","authorization","security","model-context-protocol"],"pricing":null,"endpoints":[{"url":"pypi:capforge-mcp","type":"package_pypi","auth":null,"probeable":false}],"skills":null,"tools":null,"extra":null,"attribution":{"kind":"pypi","name":"pypi","license":"pypi","repoUrl":"pypi","summary":"pypi","version":"pypi","description":"pypi","homepageUrl":"pypi"}},"derived":{"capabilities":[{"slug":"dev.package-management","name":"Packages & Dependencies","confidence":1,"provenance":"derived"},{"slug":"security.identity","name":"Identity & Access","confidence":1,"provenance":"declared"}],"categories":["dev","security"],"language":"en"},"observed":{"status":"unknown","statusReason":"Distributed as a package to run locally; no network endpoint to check.","lastOkAt":null,"lastProbedAt":null,"statusComputedAt":null,"reliability30d":null,"latestObservations":[],"tools":null,"package":{"name":"capforge-mcp","registry":"pypi","observedAt":"2026-09-09T11:32:17.714Z","publishedAt":"2026-07-23T11:20:28.238965Z","latestVersion":"0.6.1"}},"verification":{"claimed":false,"claimedAt":null,"proofs":[]},"provenance":{"sources":[{"source":"pypi","key":"capforge-mcp","url":"https://pypi.org/project/capforge-mcp/","firstSeenAt":"2026-09-09T11:29:34.930Z","fetchedAt":"2026-09-09T11:29:34.930Z","normalizedAt":"2026-09-09T11:29:34.930Z"}]},"firstSeenAt":"2026-09-09T11:29:34.930Z","updatedAt":"2026-09-09T11:32:17.714Z"}