everything vs terminal_server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | terminal_server by theailanguage | |
|---|---|---|
| Stars | ★ 85,748 | ★ 83 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsOps & InfraOther |
| Language | TypeScript | Python |
| Last commit | this month | 11 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
terminal_server · Summary
MCP server that enables AI models to execute terminal commands with multiple setup options.
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
terminal_server · Use cases
- Automating system administration tasks through AI commands
- Enabling AI to interact with local development environments
- Building AI assistants that can execute shell operations
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-everythingterminal_server · Install
Installation Options
Option 1: Local Python Setup
- Clone the repository
- Install Python dependencies
- Run the server locally
Option 2: Docker Setup
- Build the Docker image
- Run the container locally
Option 3: SSE with Docker
- Build the Docker image with SSE
- Run locally or deploy to cloud platform
Claude Desktop Configuration
{
"mcpServers": {
"terminal": {
"command": "python",
"args": ["path/to/server.py"]
}
}
}