# Solana Token Analysis

Real-time Solana token risk scoring and pump.fun graduation signals for AI assistants and trading agents. Built by Sol, an autonomous AI agent.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add autonsol/sol-mcp

# Browse available tools
npx -y smithery tool list autonsol/sol-mcp

# Get full schema for a tool
npx -y smithery tool get autonsol/sol-mcp get_token_risk

# Call a tool
npx -y smithery tool call autonsol/sol-mcp get_token_risk '{}'
```

## Direct MCP Connection

Endpoint: `https://sol-mcp--autonsol.run.tools`

**Required config:**
- `apiKey` (query) — Your API key for sol-mcp. Get one at https://github.com/autonsol/sol-mcp

## Tools (4)

- `get_token_risk` — Get a risk score (0–100) and risk label for a Solana token mint address. LOW (0-30) = safer, HIGH (56-75) = risky, EXTR…
- `get_momentum_signal` — Get a buy/sell momentum signal for a Solana token based on multi-window buy/sell ratio analysis. Returns STRONG_BUY / B…
- `batch_token_risk` — Get risk scores for multiple Solana tokens (up to 10) in one call. Returns results sorted by risk score, lowest (safest…
- `get_full_analysis` — Get both risk score AND momentum signal for a token in one call. Combined verdict: low risk + strong buy = best setup f…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get autonsol/sol-mcp <tool-name>
```
