Agent Doctor
Queries the Ethereum blockchain to resolve agent identities from the ERC-8004 IdentityRegistry and verify ENSIP-25 bidirectional ENS records.
Fetches and validates agent registration files hosted on IPFS via ipfs:// URIs.
Checks agent registrations on the Optimism chain using the IdentityRegistry contract.
Checks agent registrations on the Polygon chain using the IdentityRegistry contract.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Agent Doctordiagnose agent 42 on base"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Agent Doctor
An AI-agent-facing service that audits ERC-8004 agent registrations and tells owners exactly how to fix them.
Why: of 170,000+ agents registered in the ERC-8004 registries, only 3–15%
expose BOTH a valid registration file AND a live declared endpoint
(arXiv:2606.26028). Agent Doctor diagnoses
that gap: it resolves the on-chain identity, fetches and validates the
registration file, probes every declared endpoint for liveness, verifies the
ENSIP-25 bidirectional ENS link, and returns a graded report (A–F) with a
concrete, ordered fix list.
What it checks
Check | Meaning |
|
|
| the agentURI (https / ipfs / data:) serves valid JSON |
| registration-v1 shape: |
|
|
| liveness probe per declared service — generic HTTP GET; A2A additionally looks for the agent card (endpoint itself, then |
| ENSIP-25: the registration file references the ENS name and the name carries the text record |
Grades: A all pass · B warnings only · C endpoint/ENS failures ·
D broken registration file · F identity unresolvable.
Related MCP server: mcp-gauge
Quickstart
cd agent-doctor
python3 -m venv .venv
.venv/bin/pip install web3 fastapi uvicorn httpx mcp pytestCLI
.venv/bin/python -m agent_doctor check --chain base --agent-id 42
.venv/bin/python -m agent_doctor check --chain base --agent-id 42 --ens myagent.eth
.venv/bin/python -m agent_doctor check --ens myagent.eth # best-effort discovery
.venv/bin/python -m agent_doctor check --chain base --agent-id 42 --jsonExit code 0 for grades A/B, 1 otherwise (CI-friendly).
HTTP API
.venv/bin/uvicorn agent_doctor.api:app --port 8004
curl 'http://127.0.0.1:8004/check?chain=base&agentId=42'
curl 'http://127.0.0.1:8004/check?ens=myagent.eth'
curl 'http://127.0.0.1:8004/healthz'MCP (stdio)
.venv/bin/python -m agent_doctor.mcp_serverExposes one tool, diagnose_agent(chain, agent_id, ens, timeout). Claude Code
registration example:
claude mcp add agent-doctor -- /path/to/agent-doctor/.venv/bin/python -m agent_doctor.mcp_serverConfiguration
AGENT_DOCTOR_RPC_<CHAIN>(e.g.AGENT_DOCTOR_RPC_BASE) — override the default publicnode RPCs; ENS always resolves on Ethereum mainnet.AGENT_DOCTOR_IPFS_GATEWAY— defaulthttps://ipfs.io/ipfs/.AGENT_DOCTOR_HTTP_TIMEOUT— default 10 s.
Tests
.venv/bin/python -m pytest # unit tests (offline)
.venv/bin/python -m pytest --live # + live read-only test against the real Base registryFixtures include the ENSIP-25 worked example: registry
0x8004A169…a432 on eip155:1, agentId 42 →
agent-registration[0x000100000101148004a169fb4a3325136eb29fa0ceb6d2e539a432][42].
Register Agent Doctor itself (owner-only steps)
The repo ships its own dogfood identity in identity/:
registration.json (valid per our own validator), mint_identity.py
(unsigned tx builder — never touches keys), ens_records.py (exact ENSIP-25
record printer). To go live:
Registration file is hosted — this repo is public, so the canonical agentURI is
https://raw.githubusercontent.com/Maxwell012/agent-doctor/main/identity/registration.json. Theagentdoctor.example.comservice endpoints inside it are still placeholders — replace them once the HTTP API is deployed somewhere real.Fund a wallet on Base (a few dollars of ETH for gas).
Mint the identity — build the unsigned tx and sign it in your own wallet:
.venv/bin/python identity/mint_identity.py --agent-uri https://raw.githubusercontent.com/Maxwell012/agent-doctor/main/identity/registration.json --from 0xYourAddressFunction:
register(string agentURI)on0x8004A169FB4a3325136EB29fA0ceB6D2e539a432(Base, chainId 8453). Read the mintedagentIdfrom theRegisteredevent, then updateregistrations[].agentIdinregistration.json(currently a0placeholder) and re-upload.Buy the ENS name —
agent-doctor.eth(checked free on mainnet 2026-07-13); register it in the ENS app, set its ETH address record to the minting wallet.Set the ENSIP-25 text record (bidirectional link):
.venv/bin/python identity/ens_records.py --ens <yourname>.eth --chain base --agent-id <agentId>Set the printed key to value
1in the ENS app; also update the ENSservices[]entry inregistration.jsonif the name differs from the placeholder. Optionally set profile text records (avatar,description,url).Optional: buy the $1 verification certificate at veral.tech for an extra trust signal.
Self-check until grade A:
.venv/bin/python -m agent_doctor check --chain base --agent-id <agentId> --ens <yourname>.eth
Design notes / known limits (MVP)
Read-only chain access; no keys, no signing, no state.
The deployed registry proxy does not answer
totalSupply()/ enumeration (observed 2026-07-09), so ENS-only diagnosis without an agentId is best-effort and warns instead of guessing.MCP probe is reachability-only; a real MCP handshake (initialize/tools-list) is a natural next step.
Registration schema is validated leniently on purpose — the EIP-8004 registration-v1 field list is not a closed schema.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for building and testing AI agents with multi-model experimentation and insights.
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
MCP server for agentverse documentation, generated by doc2mcp.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceThis MCP server enables security auditing for MCP configurations and AI agents, including prompt injection testing, data flow tracing, and security policy generation.16 npmMIT
- AlicenseAqualityDmaintenanceAn MCP server that enables coding agents to autonomously test, evaluate, and tune other MCP servers by acting as a proxy and providing linting, trace recording, evaluation, comparison, and reporting tools.7MIT
- AlicenseNot gradedqualityBmaintenanceAn MCP server that provides tools to audit AI-agent marketplace integrity by scanning listings for deceptive patterns like fabricated engagement, automated seeding, self-advertisement, unpaid work risk, and high-budget bait.1MIT
- AlicenseAqualityBmaintenanceAn MCP server that bridges ERC-8004 agent identity, reputation, and validation registries into tool calls, enabling discovery, inspection, and verification of on-chain AI agents from any MCP client.8MIT