MCP Catalogs
Home

evetycoon-mcp-server vs everything

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

evetycoon-mcp-server
by kongyo2
everything
by modelcontextprotocol
Stars★ 3★ 85,748
30d uses
Score3677
Official
Categories
E-commerceAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

evetycoon-mcp-server · Summary

An MCP server for EVE Online market data, providing access to price statistics, order books, and historical information.

everything · Summary

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

evetycoon-mcp-server · Use cases

  • Analyze EVE Online market trends for specific items across regions
  • Track price history and volume statistics for in-game commodities
  • Compare market prices between different regions to identify profitable trading routes

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

evetycoon-mcp-server · Install

Installing via Smithery

npx -y @smithery/cli install @kongyo2/evetycoon-mcp-server --client claude

Manual Installation

  1. Clone this repository
  2. Install dependencies:
npm install
  1. Build the project:
npm run build

For Claude Desktop

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "evetycoon": {
      "command": "node",
      "args": ["/path/to/evetycoon-mcp-server/dist/index.js"]
    }
  }
}

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.