schedcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
schedcp by eunomia-bpf | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 105 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringOps & Infra | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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": []
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.