blockrun-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
blockrun-mcp by BlockRunAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 464 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsSearch | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
blockrun-mcp · Summary
Real-time data MCP server providing markets, research, X/Twitter and crypto data with pay-per-call billing.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
blockrun-mcp · Use cases
- Real-time market data analysis for trading decisions
- Research paper discovery and summarization
- Social media monitoring and trend analysis
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
blockrun-mcp · Install
# Claude Code (recommended)
claude mcp add blockrun -s user -- npx -y @blockrun/mcp@latest
# Claude Desktop
Add to claude_desktop_config.json:
```json
{
"mcpServers": {
"blockrun": {
"command": "npx",
"args": ["-y", "@blockrun/mcp"]
}
}
}Hosted (no install)
claude mcp add blockrun -s user --transport http https://mcp.blockrun.ai/mcp
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-everything