{"$schema":"https://wellknown.network/schemas/agent-record-v1.json","schemaVersion":"1","id":"ag_4rbgdsp5n69v","handle":"agentis-mcp","url":"https://wellknown.network/agents/agentis-mcp","links":{"self":"https://wellknown.network/agents/agentis-mcp/record.json","html":"https://wellknown.network/agents/agentis-mcp","markdown":"https://wellknown.network/agents/agentis-mcp/record.md","api":"https://wellknown.network/api/v1/agents/agentis-mcp","status":"https://wellknown.network/api/v1/agents/agentis-mcp/status","claim":"https://wellknown.network/agents/agentis-mcp/claim","claimApi":"https://wellknown.network/api/v1/claims","claimDescriptor":"https://wellknown.network/agents/agentis-mcp/claim.json","badge":"https://wellknown.network/agents/agentis-mcp/badge.svg","openapi":"https://wellknown.network/openapi.json"},"ard":{"identifier":"urn:air::server:agentis-mcp","type":"application/mcp-server-card+json"},"kind":"mcp_server","declared":{"name":"agentis-mcp","summary":"MCP server for the Agentis agent identity registry","description":"# agentis-mcp\n\nAn MCP (Model Context Protocol) server that connects any MCP-compatible AI orchestrator to the Agentis agent identity registry. It exposes four tools: searching the registry by capability, verifying a specific agent by DID, fetching registry statistics, and reading the cryptographic audit trail for an agent.\n\n## Install\n\n```bash\npip install agentis-mcp\n```\n\n## Usage with Claude Desktop\n\nAdd the following to your `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"agentis\": {\n      \"command\": \"python\",\n      \"args\": [\"-m\", \"agentis_mcp.server\"]\n    }\n  }\n}\n```\n\nThe config file is located at:\n- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`\n- Windows: `%APPDATA%\\Claude\\claude_desktop_config.json`\n\nRestart Claude Desktop after saving. The Agentis tools will appear in the tool list.\n\n## Usage with any MCP client\n\n```python\nimport asyncio\nfrom mcp import ClientSession, StdioServerParameters\nfrom mcp.client.stdio import stdio_client\n\nserver_params = StdioServerParameters(\n    command=\"python\",\n    args=[\"-m\", \"agentis_mcp.server\"],\n)\n\nasync def main():\n    async with stdio_client(server_params) as (read, write):\n        async with ClientSession(read, write) as session:\n            await session.initialize()\n\n            # List available tools\n            tools = await session.list_tools()\n            for tool in tools.tools:\n                print(tool.name, \"-\", tool.description[:60])\n\n            # Search for agents that can read invoices\n            result = await session.call_tool(\n                \"search_agents\",\n                {\"capability\": \"invoices:read\", \"min_tier\": 2},\n            )\n            print(result.content[0].text)\n\n            # Verify a specific agent\n            result = await session.call_tool(\n                \"verify_agent\",\n                {\"did\": \"did:web:agentis.dev:agents:28e83dff641920ad\"},\n            )\n            print(result.content[0].text)\n\nasyncio.run(main())\n```\n\n## Available tools…","publisher":null,"homepage":"https://agentis-id.vercel.app","repository":"https://github.com/lujainkhalil/Agentis","version":"0.1.0","license":"MIT","protocols":["mcp"],"tags":["mcp","agents","identity","ai","agentis"],"pricing":null,"endpoints":[{"url":"pypi:agentis-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":"security.identity","name":"Identity & Access","confidence":1,"provenance":"declared"},{"slug":"documents.invoice-processing","name":"Invoice Processing","confidence":0.814,"provenance":"derived"}],"categories":["documents","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":"agentis-mcp","registry":"pypi","observedAt":"2026-09-09T08:22:31.099Z","publishedAt":"2026-06-04T16:21:05.002902Z","latestVersion":"0.1.0"}},"verification":{"claimed":false,"claimedAt":null,"proofs":[]},"provenance":{"sources":[{"source":"pypi","key":"agentis-mcp","url":"https://pypi.org/project/agentis-mcp/","firstSeenAt":"2026-09-09T08:21:03.621Z","fetchedAt":"2026-09-09T08:21:03.621Z","normalizedAt":"2026-09-09T08:21:03.621Z"}]},"firstSeenAt":"2026-09-09T08:21:03.621Z","updatedAt":"2026-09-09T08:22:31.099Z"}