MCP Catalogs
Home

mcp-server-chart vs schedcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
schedcp
by eunomia-bpf
Stars★ 4,068★ 105
30d uses10,239
Score8446
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsMonitoringOps & Infra
LanguageTypeScriptC
Last committhis month3 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

schedcp · Summary

SchedCP enables AI optimization of Linux kernel schedulers using MCP Server for automatic management and performance tuning.

mcp-server-chart · Use cases

  • Data analysts creating visual reports from datasets
  • AI assistants generating custom charts based on user requests
  • Web applications embedding visualization capabilities via HTTP API

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

mcp-server-chart · Install

Installation

Install globally:

npm install -g @antv/mcp-server-chart

For Desktop Apps (e.g., Claude Desktop, VSCode):

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "npx",
      "args": ["-y", "@antv/mcp-server-chart"]
    }
  }
}

For Windows:

{
  "mcpServers": {
    "mcp-server-chart": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
    }
  }
}

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": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.