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 | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 2 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-everythingsequential-thinking-mcp-v2 · Install
Installation
- Clone the repository:
git clone https://github.com/spideynolove/sequential-thinking-mcp-v2.git
cd sequential-thinking-mcp-v2- Install dependencies and run the server:
uv sync
uv run main.py- 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"
}
}
}