Agentradar Verify

by Bichev

324 downloads
Not rated
GitHub

About

Trust scoring, scam detection, and EAS attestations for ERC-8004 + x402 agents on Base.

Details

Author
Bichev
Downloads
324
Categories
Other, Security

- Full 6‑signal trust verification
- Side‑by‑side comparison of two agents
- Batch verify up to 10 agents at once
- Generate embeddable trust badge URLs
- On‑chain EAS attestation of agent scores
- Scam database lookup and reporting

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Agentradar Verify
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install and configure via npx or local build. In Cursor, add a stanza to .cursor/mcp.json using command "npx -y @agentradar/mcp" with the optional AGENTRADAR_OPERATOR_KEY environment variable. For Claude Desktop, add the same entry to claude_desktop_config.json. Run directly with npx @agentradar/mcp or clone, install, build, and run from source.

verify_agent

Run a full 6-signal trust verification on an AI agent or wallet address. Returns composite trust score (0-100), individual signal scores, risk flags, and recommendations. Use this before transacting with or delegating to an unknown agent.

compare_agents

Compare two AI agents side-by-side on trust scores and security signals. Useful for choosing between competing agents that offer similar capabilities.

batch_verify

Verify multiple AI agent addresses in a single call (max 10). Returns trust scores for each address. Efficient for evaluating a list of candidate agents.

get_score

Get a cached trust score for an AI agent address. Faster than full verification — returns the last computed score without re-running signals. Free endpoint, no payment required.

get_badge_url

Generate a trust badge URL for an AI agent. Returns an embeddable SVG badge showing the agent's trust score. Useful for displaying trust status in UIs or documentation.

attest_agent

Score an AI agent and write an on-chain EAS attestation recording the trust score permanently. Costs $5 via x402 or requires an operator key. Use when you need a verifiable, immutable trust record for an agent.

get_attestations

List all on-chain trust attestations written by AgentRadar. Returns paginated attestation records including addresses, scores, and transaction hashes. Requires operator key.

get_attestation_by_tx

Look up a specific attestation by its transaction hash. Returns the full attestation record including the scored address, trust score, and on-chain details.

lookup_identity

Look up an AI agent's on-chain identity (ERC-8004 registration, ENS name, contract metadata). Returns who the agent claims to be and whether those claims are verified.

lookup_reputation

Look up an AI agent's on-chain reputation — ERC-8004 feedback history, attestation count, and community signals. Shows how established and trusted the agent is in the ecosystem.

resolve_agent_uri

Resolve an agent address to its registered URI, metadata, and service endpoints. Useful for discovering how to interact with a verified agent.

check_scam

Check if a wallet address is in the AgentRadar scam database. Returns matching scam records with severity, chain, source, and notes. Use this as a quick safety check before any transaction.

add_scam_wallet

Report a malicious wallet address to the AgentRadar scam database. Requires operator key. Include chain, severity level, source of intel, and optional notes.

explain_score

Get a human-readable explanation of an agent's trust score. Returns a narrative breakdown of each signal's contribution, risk factors, and actionable recommendations. Best for presenting trust analysis to end users.

get_health

Check AgentRadar API health and connectivity status. Returns service status, uptime, and version info. Use to verify the API is reachable before making other calls.

get_stats

Get AgentRadar dashboard statistics — total verifications, attestations written, scam wallets tracked, and API usage metrics. Requires operator key.

list_signals

List all trust scoring signals used by AgentRadar with their weights and descriptions. Helps understand how the composite trust score is calculated.

get_pricing

Get AgentRadar API pricing information. Shows costs for each endpoint including x402 micropayment amounts and free tier details.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "agentradar verify": {
            "agentradar": {
                "command": "npx",
                "args": [
                    "-y",
                    "@agentradar/mcp"
                ],
                "env": {
                    "AGENTRADAR_API_URL": "https://api.vvpro.ai"
                }
            }
        }
    }
}

McpServers

{
    "agentradar": {
        "command": "npx",
        "args": [
            "-y",
            "@agentradar/mcp"
        ],
        "env": {
            "AGENTRADAR_API_URL": "https://api.vvpro.ai"
        }
    }
}

@agentradar/mcp

npm version Build License: MIT MCP Registry MCP Server for AgentRadar — the on-chain trust oracle for the agent economy. Provides 18 tools for verifying, scoring, and attesting AI agent trustworthiness directly from Claude, Cursor, or any MCP-compatible client. - Live API: https://api.vvpro.ai - Web: https://vvpro.ai - MCP Registry: io.github.Bichev/agentradar This package is a thin client wrapper around the public AgentRadar API. The full source is auditable here — anything npx @agentradar/mcp runs is in this repo, MIT-licensed.

Tools

| Tool | Description | |------|-------------| | verify_agent | Full 6-signal trust verification | | compare_agents | Side-by-side comparison of two agents | | batch_verify | Verify up to 10 agents at once | | get_score | Quick cached trust score lookup | | get_badge_url | Generate embeddable trust badge URL | | attest_agent | Score + write on-chain EAS attestation | | get_attestations | List all attestations | | get_attestation_by_tx | Look up attestation by tx hash | | lookup_identity | On-chain identity (ERC-8004) | | lookup_reputation | Reputation signals | | resolve_agent_uri | Resolve agent URI/metadata | | check_scam | Check scam database | | add_scam_wallet | Report malicious wallet | | explain_score | Human-readable score explanation | | get_health | API health check | | get_stats | Dashboard statistics | | list_signals | List scoring signals + weights | | get_pricing | API pricing info |

Installation

Cursor

Add to your project's .cursor/mcp.json: ``json { "mcpServers": { "agentradar": { "command": "npx", "args": ["-y", "@agentradar/mcp"], "env": { "AGENTRADAR_OPERATOR_KEY": "your-key-here" } } } } `

Claude Desktop

Add to
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows): `json { "mcpServers": { "agentradar": { "command": "npx", "args": ["-y", "@agentradar/mcp"], "env": { "AGENTRADAR_OPERATOR_KEY": "your-key-here" } } } } `

npx (direct)

`bash npx @agentradar/mcp `

Local development

`bash git clone https://github.com/Bichev/agentradar-mcp.git cd agentradar-mcp npm install npm run build node dist/index.js `

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| |
AGENTRADAR_API_URL | No | https://api.vvpro.ai | API base URL | | AGENTRADAR_OPERATOR_KEY` | No | — | Operator key for admin endpoints and bypassing x402 payment |

Usage Examples

Once connected, you can ask your AI assistant: - "Verify this agent: 0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28" - "Is 0xdead...beef a known scam wallet?" - "Compare these two agents and tell me which is more trustworthy" - "Explain why this agent scored 45/100" - "Write an on-chain attestation for this verified agent"

Pricing

- verify_agent: $0.005 per call (x402) or free with operator key - attest_agent: $5.00 per attestation (x402) or free with operator key - get_score: Free - Admin endpoints: Operator key required

License

MIT
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.