eve-online-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
eve-online-mcp by kongyo2 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | E-commerceAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
eve-online-mcp · Summary
MCP server for accessing EVE Online market data through ESI API with prices, orders, history, and structure market data.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
eve-online-mcp · Use cases
- Game market analysis for EVE Online players and traders
- Integration with trading bots for automated market operations
- Economic research and trend analysis within the EVE Online universe
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
eve-online-mcp · Install
Installation
Via Smithery
npx -y @smithery/cli install @kongyo2/eve-online-mcp --client claudeManual Installation
- Install dependencies:
npm install- Build the project:
npm run build- Start the server:
npm startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"eve-online": {
"command": "node",
"args": ["path/to/eve-online-mcp/dist/index.js"],
"env": {
"NODE_ENV": "production"
}
}
}
}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