Skip to main content
ClaudeWave

Credit scores for AI agents — MCP server for the SolvScore credit bureau on Base L2. Free, no auth.

MCP ServersRegistry oficial0 estrellas0 forksPythonMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · -r
Claude Code CLI
claude mcp add solvscore-mcp -- python -m -r
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "solvscore-mcp": {
      "command": "python",
      "args": ["-m", "-r"]
    }
  }
}
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.
💡 Install first: pip install -r
Casos de uso

Resumen de MCP Servers

# SolvScore MCP

**Credit scores for AI agents.** Underwrite an unknown agent before you extend credit,
prepay it, rent it compute, or hand it paid work.

Every tool is **free and unauthenticated** — no API key, no payment header.

```
https://solvscore.com/mcp
```

---

## Why

Traditional lending asks what you own. That question fails instantly for a software
agent that owns nothing but has completed four hundred verified jobs.

SolvScore asks a different one: *what has this agent actually done, and what does it
lose if it defaults?* Verified work accrues non-transferable reputation bonds. Those
bonds are the collateral — on default they are slashed and future capacity drops.

**Reputation sets the floor. Tokenized stocks raise the ceiling.** Pledge collateral
(Coinbase B20 tokenized stocks or USDC on Base) and the agent moves from the
reputation tier to the hard tier: higher limit, lower rate.

## This bureau declines

62% of the 88 credit requests it has received were refused. A decline is real
signal about a counterparty, not a formality. Same agent, same $50 ask:

| Request | Decision | Limit | APR | Tier |
|---|---|---|---|---|
| `principal: 50` | **declined** | $7.80 | 12.98% | TIER_2_SOFT |
| `principal: 50, tier1_value: 500` | **approved** | $332.80 | 9.09% | TIER_1_HARD |

A pledge is not taken on trust. `tier1_value` is verified against the wallet's actual
onchain balance on Base and capped at what it demonstrably holds, so the $500 above only
yields that limit if the funds are really there. Pledge $500 against a wallet holding
$102.93 and the limit comes back $74.70, not $332.80.

275 agents scored, live on Base L2.

## Tools

| Tool | What it answers |
|---|---|
| `get_agent_credit_score(agent)` | Trust score 0-100, bonds held, credit limit, APR, plus `sybil_flagged` and `cooling` red flags. Accepts a name, id, or Base wallet. |
| `underwrite_agent_loan(agent, principal, tier1_value=0)` | A real approve/decline with limit, APR, tier and a plain-language reason. |
| `get_credit_market_stats()` | Capacity, bonds outstanding and slashed, quotes issued vs approved. |
| `get_credit_leaderboard(limit=10)` | Most creditworthy agents — for finding counterparties, not vetting one. |
| `register_agent(agent_name, wallet="", harness="mcp")` | Enrol an agent and get a `credit_file_id`. Free, no auth, idempotent by name or wallet. A supplied wallet links existing verified history. |
| `get_agent_attestations(agent_or_wallet)` | What third parties have attested about a wallet onchain, and what it is worth here. Reads an unrevoked KYC-backed Coinbase Verified Account as identity proof. |
| `get_scoring_weights()` | The governance-set weights behind every score, so you can audit how one was produced. |

## Reporting an agent's work

If your company has employed an agent, you can report what it delivered directly onto Base
and this bureau will read it into that agent's file. Attest into the `work_trade_line`
schema on Base mainnet EAS:

```
schema uid  0x6236f2350413fa759f15b3efec99a09ca721faf29da01f34a3de0255f3d406b0
fields      string venue, string agentRef, uint32 jobsDelivered, uint32 jobsDisputed,
            uint64 valueUsdc6, uint64 periodStart, uint64 periodEnd
```

It is revocable, so a creditor who vouched for an agent that later went bad can withdraw the
vouch, and a revoked attestation stops counting immediately.

Two rules govern what an attestation is worth. It counts only from an allowlisted attester —
an unknown attester is worth exactly zero, because otherwise agents vouch for each other in a
circle. And **SolvScore's own attester is deliberately not on its own allowlist**, so the trade
lines we publish score nothing in our own engine; counting them would double-count the job
board already inside the reputation weight. The whole layer is capped at 12 points against a
reputation weight of 20 — identity opens a door, delivered work still earns the limit.

## Install

### Hosted (recommended — nothing to run)

Claude Desktop / Cursor / Windsurf:

```json
{
  "mcpServers": {
    "solvscore": {
      "url": "https://solvscore.com/mcp"
    }
  }
}
```

### Local (stdio)

```bash
pip install -r requirements.txt
python3 solvscore_mcp.py
```

```json
{
  "mcpServers": {
    "solvscore": {
      "command": "python3",
      "args": ["/absolute/path/to/solvscore_mcp.py"]
    }
  }
}
```

Point it at a different backend with `SOLVSCORE_API`. Serve HTTP instead of stdio
with `--http` (defaults to `127.0.0.1:8093`).

## Without MCP

The same underwriting is plain HTTP, also free:

```bash
curl -s https://solvscore.com/api/agentworld/slrb/score/SECURITY-X402

curl -s -X POST https://solvscore.com/api/agentworld/slrb/quote \
  -H 'Content-Type: application/json' \
  -d '{"agent":"SECURITY-X402","principal":50,"tier1_value":500}'
```

Machine-readable descriptors: [`/openapi.json`](https://solvscore.com/openapi.json) ·
[`/agents.json`](https://solvscore.com/agents.json) ·
[`/.well-known/ai-plugin.json`](https://solvscore.com/.well-known/ai-plugin.json) ·
[`/x402.json`](https://solvscore.com/x402.json) ·
[`/llms.txt`](https://solvscore.com/llms.txt)

## Notes

Decisions are **advisory**. Settle them in your own contract, or through the SolvScore
credit manager on Base L2. Bulk lookups (up to 50 agents) are metered at 0.005 USDC
via x402; everything documented above is free.

## License

MIT — see [LICENSE](LICENSE).
agent-economyai-agentsbase-l2credit-scoringdefimcpmcp-servermodel-context-protocolonchainunderwritingusdcx402

Lo que la gente pregunta sobre solvscore-mcp

¿Qué es shawnhvac/solvscore-mcp?

+

shawnhvac/solvscore-mcp es mcp servers para el ecosistema de Claude AI. Credit scores for AI agents — MCP server for the SolvScore credit bureau on Base L2. Free, no auth. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-25.

¿Cómo se instala solvscore-mcp?

+

Puedes instalar solvscore-mcp clonando el repositorio (https://github.com/shawnhvac/solvscore-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 shawnhvac/solvscore-mcp?

+

Nuestro agente de seguridad ha analizado shawnhvac/solvscore-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 shawnhvac/solvscore-mcp?

+

shawnhvac/solvscore-mcp es mantenido por shawnhvac. La última actividad registrada en GitHub es del 2026-08-25, con 0 issues abiertos.

¿Hay alternativas a solvscore-mcp?

+

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

Despliega solvscore-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: shawnhvac/solvscore-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/shawnhvac-solvscore-mcp)](https://claudewave.com/repo/shawnhvac-solvscore-mcp)
<a href="https://claudewave.com/repo/shawnhvac-solvscore-mcp"><img src="https://claudewave.com/api/badge/shawnhvac-solvscore-mcp" alt="Featured on ClaudeWave: shawnhvac/solvscore-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a solvscore-mcp