everything vs mcp-sequentialthinking-tools
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-sequentialthinking-tools by spences10 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 583 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-sequentialthinking-tools · Summary
An MCP server for recording sequential reasoning steps with history, branching, and tool plan validation.
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
mcp-sequentialthinking-tools · Use cases
- Breaking down complex problems into manageable reasoning steps
- Maintaining and inspecting reasoning history during extended agent runs
- Validating model-recommended tools against an available tools list
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-everythingmcp-sequentialthinking-tools · Install
Installation
Install via npm:
npm install -g mcp-sequentialthinking-toolsClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-sequentialthinking-tools": {
"command": "npx",
"args": ["-y", "mcp-sequentialthinking-tools"],
"env": {
"MAX_HISTORY_SIZE": "1000"
}
}
}
}You can also set the MAX_HISTORY_SIZE environment variable to adjust the maximum history size per session (default is 1000).