botindex-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
botindex-mcp-server by Cyberweasel777 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 2 mo ago | this month |
botindex-mcp-server · Summary
BotIndex MCP Server provides AI agents with sports odds, crypto data, and analytics via 17 premium tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
botindex-mcp-server · Use cases
- AI agents making informed sports betting decisions with real-time odds and correlation data
- Crypto trading bots monitoring token launches and market correlations
- Automated systems comparing commerce protocols and making optimized decisions
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
botindex-mcp-server · Install
Installation
npm install botindex-mcp-serverClaude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"botindex": {
"command": "npx",
"args": ["-y", "botindex-mcp-server"]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"botindex": {
"command": "npx",
"args": ["-y", "botindex-mcp-server"]
}
}
}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