everything vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | solscan-mcp by wowinter13 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper Toolsblockchain |
| Language | TypeScript | Rust |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
solscan-mcp · Summary
A Rust MCP server for querying Solana blockchain data through Solscan API using natural language.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
solscan-mcp · Use cases
- Analyzing suspected addresses for criminal activity by combining with other MCPs
- Investigating wallet patterns including MEV, dusting, poisoning, and sandwich attacks
- Querying token information and transaction details on the Solana blockchain
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingsolscan-mcp · Install
Installation
Prerequisites:
- Rust toolchain (install via [rustup](https://rustup.rs/))
- Solscan Pro API key (obtain from [Solscan APIs](https://solscan.io/apis))
cargo install solscan-mcpAdd to your Claude Desktop configuration:
{
"mcpServers": {
"solscan-mcp": {
"command": "/Users/$username/.cargo/bin/solscan-mcp",
"args": [],
"env": {
"SOLSCAN_API_KEY": "your_solscan_api_key"
}
}
}
}