Verdict ratings for AI agents over MCP. Keyless. First module of the callable Verdict trust layer.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Documented (README)
claude mcp add verdict-finance-mcp -- npx -y vitest{
"mcpServers": {
"verdict-finance-mcp": {
"command": "npx",
"args": ["-y", "vitest"]
}
}
}Resumen de MCP Servers
# verdict-finance-mcp
[Verdict](https://www.verdict.finance) is the institutional diligence layer for
DeFi: independent ratings, rating-priced cover, security testing and continuous
monitoring, across seven entity types. This
[Model Context Protocol](https://modelcontextprotocol.io) server lets AI agents
call that layer directly.
**Live today: Verdict Ratings.** Letter grade (AAA to D) plus a composite score
(0 to 100) built from 300+ criteria across the full dependency graph, for
protocols, chains, tokens, oracles, vaults, organisations and bridges. Plus
post-quantum readiness for chains, and a live feed of confirmed DeFi hack
incidents.
Keyless. It wraps Verdict's live anonymous API, so there is no signup and no
API key. Each user runs it locally and queries from their own IP.
## Install
Add to your MCP client config (Claude Desktop: `claude_desktop_config.json`;
Claude Code: `.mcp.json`):
```json
{
"mcpServers": {
"verdict-finance": {
"command": "npx",
"args": ["-y", "verdict-finance-mcp"]
}
}
}
```
That is it. No key. (Requires Node 20+.)
## Tools
| Tool | What it does |
| --- | --- |
| `search_ratings({ query, entity_type? })` | Find entities by name or keyword. Omit `entity_type` to search all 7 types at once. |
| `get_rating({ entity_type, identifier })` | Full free-tier rating for one entity, by slug (`aave-v4`, `ethereum`) or UUID. Includes dependency-drag provenance when it shaped the grade. |
| `list_ratings({ entity_type, category?, chain?, limit? })` | Browse a set, best-rated first (default 25, cap 50). Category filters are lowercase, e.g. `lending`. |
| `quantum_readiness({ chain? })` | Post-quantum cryptographic readiness for chains (QRI 0-100, readiness band, migration stage, hybrid-signature status), data by LayerQu. Omit `chain` for the full 72+ chain league table, including chains Verdict has not rated. |
| `get_recent_incidents({ since?, slug?, limit? })` | Confirmed DeFi hack incidents, newest first (default 25, cap 200). Each is corroborated by more than one public hack-reporting source. Poll with `since`; filter to one rated protocol with `slug`. |
Every response ends with an attribution line linking back to the rating on
verdict.finance.
Quantum-readiness data is provided by
[LayerQu](https://layerqu.com/dashboard/) and is companion data only. It never
feeds a Verdict grade; chain ratings simply carry an extra LayerQu line when a
reading is available.
The incident feed carries confirmed hack incidents across DeFi, including ones
at protocols Verdict does not rate. Two things are worth knowing when reading
it. Matching to a rated protocol happens when an incident is received, so an
incident stored before its protocol was rated is never retroactively
re-matched. And an incident is a signal to look, never an automatic downgrade:
a matched entity may be flagged under review, but re-rating is always a human
decision.
### Example prompts
- *"What does Verdict rate Aave?"* runs `get_rating({ entity_type: "protocol", identifier: "aave-v4" })`
- *"Search Verdict for Chainlink."* runs `search_ratings({ query: "chainlink" })`
- *"List the chains Verdict rates."* runs `list_ratings({ entity_type: "chain" })`
- *"Is Ethereum quantum-ready?"* runs `quantum_readiness({ chain: "ethereum" })`
- *"Any DeFi hacks this week?"* runs `get_recent_incidents({ limit: 10 })`
### Example output
```
Aave V4 — BBB (78/100) · protocol · chains: Ethereum · categories: lending · https://www.verdict.finance/products/ratings#protocol-aave-v4
Rating by Verdict — https://www.verdict.finance/products/ratings#protocol-aave-v4 · Methodology + deeper analysis at https://www.verdict.finance
```
Entities that are not yet rated render as `unrated`. When a rating was pulled
down by a weak dependency, the response says which one.
## The roadmap: the callable trust layer
Verdict's diligence lifecycle is Assess, Rate, Cover, Secure, Monitor. Ratings
are the first module agents can call. As the rest of the stack becomes
callable, this server grows a module per product:
- **Cover**: rating-priced parametric cover on rated protocols.
- **Audits**: hand over a repo, receive blind bids from top audit firms.
- **Monitoring**: watchlists, live alerts and webhooks on rated entities.
- **Pen testing**: engage frontend penetration tests.
Tool names are module-scoped (`search_ratings`, `get_rating`, `list_ratings`)
so new modules arrive without breaking existing agents.
## How it works
Verdict's read API is anonymous and rate-limited per IP (120/min, 20k/day).
This server:
- lists and looks up entities via `GET /{type}s` and `GET /{type}s/{identifier}`, and
- fetches each entity's latest published scorecard
(`GET /{type}s/{id}/scorecards`) for the grade + composite score.
The API base is `https://api.verdict.finance/api/v1` and can be overridden with
the `VERDICT_API_BASE` environment variable (used for testing). The full API
surface is documented at
[api.verdict.finance/openapi.json](https://api.verdict.finance/openapi.json).
Rate limits and outages are handled gracefully. Tools return a friendly text
message, never a crash.
## Attribution and trademark
Ratings and methodology are © Verdict. This tool surfaces the free tier; the
full methodology, domain breakdowns and deeper analysis live at
[verdict.finance](https://www.verdict.finance). The code is Apache-2.0; the
Verdict name and branding are not licensed by it.
## Development
```bash
npm install
npm run build # tsc -> dist/
npm test # vitest (unit tests, HTTP client mocked)
# optional live smoke against the real API:
VERDICT_LIVE_SMOKE=1 npx vitest run test/live.smoke.test.ts
```
## License
Apache-2.0. Copyright 2026 Verdict Capital.
Lo que la gente pregunta sobre verdict-finance-mcp
¿Qué es Verdict-Capital/verdict-finance-mcp?
+
Verdict-Capital/verdict-finance-mcp es mcp servers para el ecosistema de Claude AI. Verdict ratings for AI agents over MCP. Keyless. First module of the callable Verdict trust layer. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-24.
¿Cómo se instala verdict-finance-mcp?
+
Puedes instalar verdict-finance-mcp clonando el repositorio (https://github.com/Verdict-Capital/verdict-finance-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 Verdict-Capital/verdict-finance-mcp?
+
Nuestro agente de seguridad ha analizado Verdict-Capital/verdict-finance-mcp y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene Verdict-Capital/verdict-finance-mcp?
+
Verdict-Capital/verdict-finance-mcp es mantenido por Verdict-Capital. La última actividad registrada en GitHub es del 2026-08-24, con 0 issues abiertos.
¿Hay alternativas a verdict-finance-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega verdict-finance-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.
[](https://claudewave.com/repo/verdict-capital-verdict-finance-mcp)<a href="https://claudewave.com/repo/verdict-capital-verdict-finance-mcp"><img src="https://claudewave.com/api/badge/verdict-capital-verdict-finance-mcp" alt="Featured on ClaudeWave: Verdict-Capital/verdict-finance-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!