EVE-Online-OSINT-MCP vs mcpo
Side-by-side comparison to help you pick between these two MCP servers.
EVE-Online-OSINT-MCP by kongyo2 | mcpo by open-webui | |
|---|---|---|
| Stars | ★ 10 | ★ 4,197 |
| 30d uses | — | — |
| Score | 38 | 58 |
| Official | — | — |
| Categories | Other | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Python |
| Last commit | 9 mo ago | 3 mo ago |
EVE-Online-OSINT-MCP · Summary
An MCP server providing OSINT tools for EVE Online characters, corporations, and alliances through ESI, EveWho, and zKillboard APIs.
mcpo · Summary
A proxy server that exposes MCP tools as OpenAPI-compatible HTTP endpoints for seamless integration with LLM agents.
EVE-Online-OSINT-MCP · Use cases
- Gathering intelligence on EVE Online players before diplomatic interactions
- Analyzing corporation strength and activity before recruiting
- Monitoring alliance growth and movements for strategic planning
mcpo · Use cases
- Integrating MCP tools with Open WebUI and other LLM frontends expecting OpenAPI
- Securing MCP servers by adding authentication and documentation through standard HTTP interfaces
- Enabling legacy systems and web applications to consume MCP tools without protocol changes
EVE-Online-OSINT-MCP · Install
Installation
Via Smithery
npx -y @smithery/cli install @kongyo2/eve-online-osint-mcp --client claudeManual Installation
git clone https://github.com/kongyo2/EVE-Online-OSINT-MCP.git
cd EVE-Online-OSINT-MCP
npm install
npm run startClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"eve-osint": {
"command": "node",
"args": ["./dist/index.js"],
"env": {}
}
}
}mcpo · Install
Installation
# Using uv (recommended)
uvx mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_command
# Using pip
pip install mcpo
mcpo --port 8000 --api-key "top-secret" -- your_mcp_server_commandDocker
docker run -p 8000:8000 ghcr.io/open-webui/mcpo:main --api-key "top-secret" -- your_mcp_server_commandClaude Desktop Configuration
{
"mcpServers": {
"mcpo-proxy": {
"command": "uvx",
"args": ["mcpo", "--port", "8000", "--api-key", "top-secret", "--", "your_mcp_server_command"]
}
}
}