MCP Catalogs
Home

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
Score3854
Official
Categories
Other
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo ago1 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 claude

Manual Installation

git clone https://github.com/kongyo2/EVE-Online-OSINT-MCP.git
cd EVE-Online-OSINT-MCP
npm install
npm run start

Claude 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.