# solrisk-mcp [Health: Active]

**Category:** 💰 Finance & Fintech  
**Repository:** https://github.com/comil27/solrisk-mcp  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/solrisk-mcp

## Description
Solana token risk (rug / honeypot / dump) scoring for AI agents — remote MCP server.

## Claude Desktop Quick Installation
Remote MCP endpoint (confidence: high). Install path detected from listing signals. Add as a URL/SSE server in your client:

```json
"mcpServers": {
  "solrisk-mcp": {
    "url": "https://modelcontextprotocol.io"
  }
}
```

## Documentation & README

# solrisk-mcp — Solana Token Risk MCP Server

A hosted **[Model Context Protocol](https://modelcontextprotocol.io) server** that gives any AI
assistant or agent an instant **rug / honeypot / dump risk score (0–100)** for any Solana SPL
token, straight from on-chain signals — no API key, no install, one URL.

> Built for Claude Code, Claude Desktop, Cursor, and any MCP-capable agent framework.

## What it does

The `solana_token_risk` tool takes a token **mint address** and returns a JSON risk report:

- **riskScore** — `0` (safe) … `100` (high rug/honeypot/dump risk)
- **mintAuthority / freezeAuthority** — can the supply be inflated or wallets frozen?
- **top10HolderPct** — holder concentration (whale/insider dump risk)
- **liquidityUsd / volume24h / priceUsd** — market depth signals

## Install (remote — nothing to download)

**Claude Code**

```bash
claude mcp add --transport http solrisk https://solrisk.rugscore.workers.dev/mcp
```

**Claude Desktop / Cursor / generic MCP client** — add to your MCP config:

```json
{
  "mcpServers": {
    "solrisk": {
      "type": "streamable-http",
      "url": "https://solrisk.rugscore.workers.dev/mcp"
    }
  }
}
```

Then ask: *"Check the rug risk of token `<mint>`."*

## Example

```jsonc
// solana_token_risk { "mint": "So11111111111111111111111111111111111111112" }
{
  "mint": "So111...1112",
  "riskScore": 0,
  "mintAuthority": null,
  "freezeAuthority": null,
  "top10HolderPct": 12.4,
  "liquidityUsd": 48211934,
  "volume24h": 91833021,
  "priceUsd": 168.42
}
```

## High-volume / autonomous agent use (paid)

The MCP tool above is free. For programmatic pay-per-call at scale, the same engine is exposed as a
pay-per-use HTTP API via **[x402](https://x402.org)** (USDC on Solana, **$0.01/call**, no account):

```
GET https://solrisk.rugscore.workers.dev/check?mint=<MINT>
```

It returns an HTTP 402 with an x402 payment challenge; pay and retry to get the full report.
Discovery: [`/.well-known/x402`](https://solrisk.rugscore.workers.dev/.well-known/x402) ·
[`/openapi.json`](https://solrisk.rugscore.workers.dev/openapi.json) ·
[`/llms.txt`](https://solrisk.rugscore.workers.dev/llms.txt)

## Links

- Free web scorer & docs: https://solrisk.rugscore.workers.dev
- MCP endpoint: https://solrisk.rugscore.workers.dev/mcp

## License

MIT

