schedcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
schedcp by eunomia-bpf | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 105 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | C | TypeScript |
| Last commit | 3 mo ago | this month |
schedcp · Summary
SchedCP enables AI optimization of Linux kernel schedulers using MCP Server for automatic management and performance tuning.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
schedcp · Use cases
- Automatically optimize Linux system performance for various workloads
- Enable AI agents to manage and tune kernel schedulers
- Create custom BPF schedulers using AI agent assistance
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
schedcp · Install
Installation Requirements
- Linux kernel 6.12+ with sched-ext support
- Rust toolchain
Build Steps
# Clone with submodules
git clone https://github.com/eunomia-bpf/schedcp
cd schedcp
git submodule update --init --recursive scheduler/scx
# Build schedulers
cd scheduler && make && make install && cd..
# Build autotune
cd autotune && cargo build --release && cd..
# Build MCP server
cd mcp && cargo build --release && cd..Claude Desktop Configuration
Add to your Claude Desktop config:
{
"mcpServers": {
"schedcp": {
"command": "path/to/schedcp/target/release/schedcp",
"args": []
}
}
}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