Agentradar Verify

Created By
Bicheva month ago
Trust scoring, scam detection, and EAS attestations for ERC-8004 + x402 agents on Base.
Overview

@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.

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

ToolDescription
verify_agentFull 6-signal trust verification
compare_agentsSide-by-side comparison of two agents
batch_verifyVerify up to 10 agents at once
get_scoreQuick cached trust score lookup
get_badge_urlGenerate embeddable trust badge URL
attest_agentScore + write on-chain EAS attestation
get_attestationsList all attestations
get_attestation_by_txLook up attestation by tx hash
lookup_identityOn-chain identity (ERC-8004)
lookup_reputationReputation signals
resolve_agent_uriResolve agent URI/metadata
check_scamCheck scam database
add_scam_walletReport malicious wallet
explain_scoreHuman-readable score explanation
get_healthAPI health check
get_statsDashboard statistics
list_signalsList scoring signals + weights
get_pricingAPI pricing info

Installation

Cursor

Add to your project's .cursor/mcp.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):

{
  "mcpServers": {
    "agentradar": {
      "command": "npx",
      "args": ["-y", "@agentradar/mcp"],
      "env": {
        "AGENTRADAR_OPERATOR_KEY": "your-key-here"
      }
    }
  }
}

npx (direct)

npx @agentradar/mcp

Local development

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

Environment Variables

VariableRequiredDefaultDescription
AGENTRADAR_API_URLNohttps://api.vvpro.aiAPI base URL
AGENTRADAR_OPERATOR_KEYNoOperator 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

Server Config

{
  "mcpServers": {
    "agentradar": {
      "command": "npx",
      "args": [
        "-y",
        "@agentradar/mcp"
      ],
      "env": {
        "AGENTRADAR_API_URL": "https://api.vvpro.ai"
      }
    }
  }
}
Project Info
Created At
a month ago
Updated At
24 days ago
Author Name
Bichev
Star
-
Language
-
License
-
Category

Recommend Servers

View All
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Shippo
@Shippo

21 hours ago