MCP Catalogs
Home

everything vs sequential-thinking-mcp-v2

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

everything
by modelcontextprotocol
sequential-thinking-mcp-v2
by spideynolove
Stars★ 85,748★ 8
30d uses
Score7741
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis month2 mo ago

everything · Summary

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

sequential-thinking-mcp-v2 · Summary

A structured reasoning MCP server with session persistence and memory management

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

sequential-thinking-mcp-v2 · Use cases

  • Long-running coding agent work with persistent memory
  • Complex problem-solving requiring structured reasoning
  • Project management with maintained reasoning context
  • Handoff between different AI agents or sessions

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

sequential-thinking-mcp-v2 · Install

Installation

  1. Clone the repository:
git clone https://github.com/spideynolove/sequential-thinking-mcp-v2.git
cd sequential-thinking-mcp-v2
  1. Install dependencies and run the server:
uv sync
uv run main.py
  1. For Claude Desktop integration, add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "sequential-thinking": {
      "command": "python",
      "args": ["main.py"],
      "cwd": "/path/to/sequential-thinking-mcp-v2"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.