MCP Catalogs
Home

eve-online-mcp vs filesystem

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

eve-online-mcp
by kongyo2
filesystem
by modelcontextprotocol
Stars★ 7★ 85,748
30d uses
Score3877
Official
Categories
E-commerceAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

eve-online-mcp · Summary

MCP server for accessing EVE Online market data through ESI API with prices, orders, history, and structure market data.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

eve-online-mcp · Use cases

  • Game market analysis for EVE Online players and traders
  • Integration with trading bots for automated market operations
  • Economic research and trend analysis within the EVE Online universe

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

eve-online-mcp · Install

Installation

Via Smithery

npx -y @smithery/cli install @kongyo2/eve-online-mcp --client claude

Manual Installation

  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Start the server:
npm start

Claude Desktop Configuration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "eve-online": {
      "command": "node",
      "args": ["path/to/eve-online-mcp/dist/index.js"],
      "env": {
        "NODE_ENV": "production"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.