everything vs csharp-runner
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | csharp-runner by sdcb | |
|---|---|---|
| Stars | ★ 85,748 | ★ 109 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | C# |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
csharp-runner · Summary
A fast, secure C# code execution platform with container isolation and MCP protocol support.
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
csharp-runner · Use cases
- AI-assisted C# programming environments
- Online C# code execution sandbox for educational purposes
- C# code testing and validation service
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-everythingcsharp-runner · Install
Installation
Using Docker Compose (recommended):
# Download the docker-compose.yml file
curl -L https://raw.githubusercontent.com/sdcb/csharp-runner/refs/heads/master/docker-compose.yml -o docker-compose.yml
# Start the services in detached mode
docker compose up -dClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"csharp-runner": {
"command": "docker",
"args": ["run", "--rm", "-i", "sdcb/csharp-runner-host", "mcp"]
}
}
}