everything vs solscan-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | solscan-mcp by Valennmg | |
|---|---|---|
| Stars | ★ 85,748 | ★ 2 |
| 30d uses | — | — |
| Score | 77 | 32 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceblockchainDeveloper Tools |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
solscan-mcp · Summary
An MCP server for querying Solana blockchain data using natural language through the Solscan API.
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
- Quickly retrieving transaction details using natural language queries
- Checking Solana account balances without writing code
- Building applications that provide blockchain data access through conversational interfaces
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
- Clone the repository:
``bash git clone https://github.com/Valennmg/solscan-mcp cd solscan-mcp ``
- Build the project (requires Rust):
``bash cargo build --release ``
- Run the server:
``bash ./target/release/solscan-mcp ``
- For Claude Desktop, add to
config.json:
```json { "mcpServers": { "solscan": { "command": "path/to/solscan-mcp", "args": [] } } }