Skip to main content
ClaudeWave
Cybercentry avatar
Cybercentry

erc-8126-scan-mcp

Ver en GitHub

Security intelligence for ERC-8004 agents, as a remote MCP server. Search 378k+ indexed agents and read Cybercentry verification results.

MCP ServersRegistry oficial0 estrellas0 forksMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/23/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/Cybercentry/erc-8126-scan-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "erc-8126-scan-mcp": {
      "command": "node",
      "args": ["/path/to/erc-8126-scan-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/Cybercentry/erc-8126-scan-mcp and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# ERC-8126 Scan MCP Server

Security intelligence for ERC-8004 agents: search the on-chain agent index and read verification results.

Nothing to install. This is a **remote** MCP server — connect to the URL and the tools appear.

| | |
|---|---|
| **Endpoint** | `https://erc8126scan.ai/api/mcp` |
| **Transport** | `streamable-http` |
| **Registry** | [`uk.co.cybercentry/erc-8126-scan`](https://registry.modelcontextprotocol.io/v0.1/servers?search=cybercentry) |
| **Website** | https://erc8126scan.ai |

## What it is

Every agent minted in the [ERC-8004 Identity Registry](https://eips.ethereum.org/EIPS/eip-8004) is indexed automatically — **378,000+** and counting. Each one carries verification results across five dimensions, produced by the Cybercentry verification services:

| | Dimension | What it covers |
|---|---|---|
| **ETV** | Token verification | The agent's token contract |
| **SCV** | Solidity code verification | The staking contract source |
| **MCV** | Media content verification | C2PA provenance of the agent's image |
| **WAV** | Web application verification | The agent's live site or dApp frontend |
| **WV** | Wallet verification | OFAC sanctions screening and funding-chain risk |

This server exposes that index. It does not run verifications — it serves results already computed and stored.

## Connect

### Claude (Desktop or claude.ai)

Remote servers are added as **connectors**, not through `claude_desktop_config.json` — that file is for local servers that run a command.

1. Settings → **Connectors**
2. **Add** → **Add custom connector**
3. Paste `https://erc8126scan.ai/api/mcp`

### Other clients

Anything that speaks MCP over streamable HTTP can connect. Point it at:

```
https://erc8126scan.ai/api/mcp
```

Check your client's own documentation for where a remote MCP server URL goes — some use a settings pane, some a config file. If yours takes a config file, the field is the server URL rather than a command.

## Tools

Six tools, all read-only. None of them mints, writes on-chain, or spends your credits.

**Two are free** — no payment, wallet or account:

| Tool | What it returns |
|---|---|
| `list_services` | The catalogue: every tool, its price, and how to read the risk fields |
| `get_index_stats` | How many agents are indexed, so you can judge coverage before paying |

The other four are paid:

| Tool | What it returns | Per call | Plan |
|---|---|---|---|
| `search_agents` | Filter the index by chain, risk score range and verification status; paginated | $0.001 | Starter |
| `get_agent` | Full detail for one agent by UUID | $0.001 | Starter |
| `get_agent_activity` | On-chain activity and liveness for one agent | $0.002 | Starter |
| `get_agent_report` | Full security assessment: per-dimension findings and evidence | $0.05 | Pro |

Call `list_services` first. It is free, and authoritative about current pricing.

`get_agent_report` returns data only for agents owned by the wallet bound to your API key. Other agents return `FORBIDDEN_NOT_OWNER`. Public scores for any agent are available through `get_agent`.

Tools you cannot reach on your plan are hidden from `tools/list` rather than listed and refused.

## Reading the scores

**Judge an agent by `risk_level`, not `overall_risk_score`.**

Scoring presumes risk: a check that applies to an agent but has not been verified counts as 100. So an agent nobody has paid to assess scores exactly the same as one assessed and found dangerous. Most of the index is the former.

`risk_level` separates them:

| Value | Meaning |
|---|---|
| `not_verified` | Nobody has assessed this agent yet. **Not a finding against it.** |
| `not_assessed` | No score recorded |
| `low` / `moderate` / `elevated` / `high` | Verified, scoring in that band |
| `critical` | Verified and genuinely high risk |

Treating a `not_verified` agent as dangerous is the most common way to misread this data.

## Paying

Two free tools, then two ways to pay for the rest. `tools/list` is public, so an agent can see everything on offer and what it costs before deciding to pay for anything.

**x402** — no account, no key. The client is quoted a price, pays in USDC, and retries. Pay on whichever chain you hold funds on:

```
Base     eip155:8453    USDC
Solana   mainnet        USDC
```

| Tool | Per call |
|---|---|
| `list_services` | free |
| `get_index_stats` | free |
| `search_agents` | $0.001 |
| `get_agent` | $0.001 |
| `get_agent_activity` | $0.002 |
| `get_agent_report` | $0.05 |

An unpaid call returns a JSON-RPC error with code `402`, carrying the payment requirements in `error.data` — the same shape as the [Cybercentry verification server](https://github.com/Cybercentry/verification-mcp).

**API key** — for volume, or clients that do not speak x402 yet. Pass an `erc8126_` key as a bearer token:

```
Authorization: Bearer erc8126_...
```

Keys come from [erc8126scan.ai/my-api-keys](https://erc8126scan.ai/my-api-keys). Calls draw on your plan's daily quota instead of being paid for individually, and tool availability and page sizes follow your tier. A key that is presented but invalid is rejected outright rather than quietly falling back to per-call billing.

Either way, `get_agent_report` is scoped to agents owned by the caller — the wallet bound to your key, or the wallet that paid.

## Standards

- [ERC-8004](https://eips.ethereum.org/EIPS/eip-8004) — Trustless Agents, the Identity Registry this index reads
- [ERC-8126](https://eips.ethereum.org/EIPS/eip-8126) — AI Agent Verification (Final)
- [ERC-8196](https://eips.ethereum.org/EIPS/eip-8196) — AI Agent Authenticated Wallet (Final)

## Links

- Endpoint — https://erc8126scan.ai/api/mcp
- Site — https://erc8126scan.ai
- API keys — https://erc8126scan.ai/my-api-keys
- Cybercentry verification MCP — https://github.com/Cybercentry/verification-mcp

---

Cybercentry Limited
ai-agentsblockchain-securityerc-8004erc-8126mcpmodel-context-protocolusdcweb3-securityx402

Lo que la gente pregunta sobre erc-8126-scan-mcp

¿Qué es Cybercentry/erc-8126-scan-mcp?

+

Cybercentry/erc-8126-scan-mcp es mcp servers para el ecosistema de Claude AI. Security intelligence for ERC-8004 agents, as a remote MCP server. Search 378k+ indexed agents and read Cybercentry verification results. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-22.

¿Cómo se instala erc-8126-scan-mcp?

+

Puedes instalar erc-8126-scan-mcp clonando el repositorio (https://github.com/Cybercentry/erc-8126-scan-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar Cybercentry/erc-8126-scan-mcp?

+

Nuestro agente de seguridad ha analizado Cybercentry/erc-8126-scan-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene Cybercentry/erc-8126-scan-mcp?

+

Cybercentry/erc-8126-scan-mcp es mantenido por Cybercentry. La última actividad registrada en GitHub es del 2026-08-22, con 0 issues abiertos.

¿Hay alternativas a erc-8126-scan-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega erc-8126-scan-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: Cybercentry/erc-8126-scan-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/cybercentry-erc-8126-scan-mcp)](https://claudewave.com/repo/cybercentry-erc-8126-scan-mcp)
<a href="https://claudewave.com/repo/cybercentry-erc-8126-scan-mcp"><img src="https://claudewave.com/api/badge/cybercentry-erc-8126-scan-mcp" alt="Featured on ClaudeWave: Cybercentry/erc-8126-scan-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a erc-8126-scan-mcp