MCP Catalogs
Home

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
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptC#
Last committhis month5 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-everything

csharp-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 -d

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "csharp-runner": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "sdcb/csharp-runner-host", "mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.