EVE-Online-OSINT-MCP vs mcp-framework
Side-by-side comparison to help you pick between these two MCP servers.
EVE-Online-OSINT-MCP by kongyo2 | mcp-framework by QuantGeekDev | |
|---|---|---|
| Stars | ★ 10 | ★ 916 |
| 30d uses | — | — |
| Score | 38 | 54 |
| Official | — | — |
| Categories | Other | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | 1 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.
mcp-framework · Summary
TypeScript framework for building MCP servers with automatic discovery, type safety, and multiple transport options.
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
mcp-framework · Use cases
- Building custom MCP servers for AI assistants with specific domain functionality
- Creating cryptocurrency tipping services like tip.md
- Developing enterprise tools with secure authentication and multiple transport options
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": {}
}
}
}mcp-framework · Install
Installation
# Install the framework globally
npm install -g mcp-framework
# Create a new MCP server project
mcp create my-mcp-server
# Navigate to your project
cd my-mcp-server
# Your server is ready to use!Using with Claude Desktop
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["/absolute/path/to/my-mcp-server/dist/index.js"]
}
}
}