npm @solradar/solradar-mcpstreamable-httpupdated 29d ago
An MCP (Model Context Protocol) server exposing SolRadar's Solana meme-coin safety data as tools any MCP-compatible AI assistant (Claude, etc.) can call directly in conversation.
What can you do with solradar mcp?
SolRadar MCP Server
An MCP (Model Context Protocol) server exposing SolRadar's Solana meme-coin safety data as tools any MCP-compatible AI assistant (Claude, etc.) can call directly in conversation.
SolRadar tracks new Solana/pump.fun token launches and computes a trust score, rug-risk flags, holder distribution, and creator track record for each one. This server wraps that data as MCP tools so an AI assistant can answer questions like "is this token safe?" or "what's trending on Solana right now?" with live data, without the user having to leave the chat.
Connect
Add this as a remote MCP connector in Claude (or any MCP-compatible client):
https://sol-radar.com/mcp
No authentication required. Rate-limited to 60 requests/hour per IP.
Tools
| Tool | Description |
|---|---|
check_token |
Trust score, rug-risk flags, holder analysis, and creator track record for a Solana token mint address |
get_trending_tokens |
Currently trending, newest, or graduated tokens on Solana/pump.fun |
check_wallet_activity |
Recent transaction activity and behavior label for a Solana wallet address |
How it works
This server is a thin MCP wrapper around SolRadar's existing public JSON API (sol-radar.com/api.php) — it doesn't duplicate any logic, just translates the same data into the MCP tool-calling format AI assistants expect.
Links
- SolRadar — the underlying rug-pull checker and token analytics site
Install
Add solradar mcp to your client. Pick the one you use.
{
"servers": {
"solradar-mcp": {
"type": "http",
"url": "https://sol-radar.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add solradar-mcp -- npx -y @solradar/solradar-mcpcodex mcp add solradar-mcp -- npx -y @solradar/solradar-mcpamp mcp add solradar-mcp -- npx -y @solradar/solradar-mcp{
"mcpServers": {
"solradar-mcp": {
"command": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"solradar-mcp": {
"command": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"solradar-mcp": {
"command": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"solradar-mcp": {
"command": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"solradar-mcp": {
"command": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"solradar-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"solradar-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@solradar/solradar-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @solradar/solradar-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 tools
solradar mcp exposes 3 tools to a connected agent.
- check_token
- Trust score, rug-risk flags, holder analysis, and creator track record for a Solana token mint address
- get_trending_tokens
- Currently trending, newest, or graduated tokens on Solana/pump.fun
- check_wallet_activity
- Recent transaction activity and behavior label for a Solana wallet address
Score
61 / 100
Good
- Documentation17/25
- Maintenance19/25
- Trust6/20
- Capability4/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 21 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 10, 2026 |