MCP Catalogs
Home

EVE-Online-OSINT-MCP vs everything

Side-by-side comparison to help you pick between these two MCP servers.

EVE-Online-OSINT-MCP
by kongyo2
everything
by modelcontextprotocol
Stars★ 10★ 85,748
30d uses
Score3877
Official
Categories
Other
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

EVE-Online-OSINT-MCP · Summary

An MCP server providing OSINT tools for EVE Online characters, corporations, and alliances through ESI, EveWho, and zKillboard APIs.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

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-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": {}
    }
  }
}

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