everything vs turn-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | turn-mcp by shiahonb777 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
turn-mcp · Summary
MCP server that enables infinite conversation turns in a single API request with human-in-the-loop capabilities.
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
turn-mcp · Use cases
- Approval workflows requiring human sign-off before proceeding
- Long-running AI agent tasks with intermittent human guidance
- Branching decision points where agent path depends on human input
- Review queues for AI-generated content before publication
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-everythingturn-mcp · Install
Quick Start
macOS
Double-click start.command
Windows
Double-click start.bat
Linux
bash start.shFrom Source
npm install
npm run build
npm start**MCP Configuration for Claude Desktop:**
{
"mcpServers": {
"turn-mcp-web": {
"url": "http://127.0.0.1:3737/mcp"
}
}
}