MCP Catalogs
Home

EVE-EST-MCP vs sequentialthinking

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

EVE-EST-MCP
by kongyo2
sequentialthinking
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3275
Official
Categories
OtherDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

EVE-EST-MCP · Summary

EVE-EST-MCP is an MCP server that provides EVE Server Time and downtime calculations for EVE Online players.

sequentialthinking · Summary

Sequential Thinking MCP Server enables dynamic problem-solving through step-by-step reasoning.

EVE-EST-MCP · Use cases

  • EVE Online players who need to track server time for fleet operations and market activities
  • Bot developers who need to schedule actions based on EVE Server Time
  • Community managers who need to announce events in relation to server downtime

sequentialthinking · Use cases

  • Planning complex system migrations with risk assessment
  • Debugging production issues requiring step-by-step analysis
  • Comparing architecture options with conditional branching

EVE-EST-MCP · Install

Installation

  1. Clone the repository:
git clone https://github.com/kongyo2/EVE-EST-MCP.git
cd EVE-EST-MCP
  1. Install dependencies:
npm install
  1. Start the server:
npm run start

For Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "eve-est": {
      "command": "node",
      "args": ["dist/index.js"],
      "env": {}
    }
  }
}

sequentialthinking · Install

Installation

**Claude Desktop**: Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: Use one of the installation buttons or manually configure with:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.