slurm-mcp
An MCP server that gives AI coding assistants direct access to Slurm HPC clusters for job submission, file management, and shell access.
README
slurm-mcp
An MCP (Model Context Protocol) server that gives AI coding assistants like Claude Code direct access to Slurm HPC clusters.
The server runs on your cluster's login node and exposes Slurm operations, file management, and shell access as MCP tools — letting Claude submit jobs, monitor GPU availability, read logs, and manage files through natural conversation.
Features
- Job Management — submit (
sbatch), list (squeue), cancel (scancel), status (sacct), and tail output - Job Watcher — background polling that records terminal state in-process (inspect via
list_watches) - Preamble Injection — prepend module loads / env setup into every inline job script
- Auto-QOS — automatic
--qos=hpgpuwhen targeting partitions that require it - File Operations — read, write, edit, search, and delete files with storage policy enforcement
- Cluster Info — partition overview, node states, GPU availability
- Shell Access — run arbitrary commands with safety guardrails
- Git Sync — pull latest code to the cluster
- Storage Policy — warns when data files (checkpoints, datasets, etc.) target quota-limited directories
Quick Start
1. Setup on the cluster
git clone https://github.com/dongwookim-ml/slurm-mcp.git
cd slurm-mcp
bash setup.sh
2. Configure Claude Code on your local machine
Add to ~/.claude.json:
{
"mcpServers": {
"slurm": {
"command": "ssh",
"args": ["user@cluster-host",
"cd /path/to/slurm-mcp && .venv/bin/python server.py"]
}
}
}
Replace user@cluster-host and /path/to/slurm-mcp with your values. SSH key-based auth is required (no password prompts).
3. Use it
Once configured, Claude Code can directly interact with your cluster:
- "Submit a training job on 4 GPUs"
- "Check my running jobs"
- "Show me the last 100 lines of job 12345's output"
- "What GPUs are available right now?"
- "Find all .py files under my project directory"
Tools
| Category | Tools |
|---|---|
| Slurm Jobs | submit_job, list_jobs, cancel_job, job_status, tail_output |
| Watchers | watch_job, list_watches |
| File Ops | read_file, write_file, edit_file, search_files, delete_file, disk_usage |
| System | run_command, sync_code, cluster_info |
Configuration
Targeted at the ai2 HPC cluster — partition names and QOS rules are baked into the code (see
HPGPU_PARTITIONSinserver.pyand the QOS policy notes inCLAUDE.md). Paths below are configurable, but the cluster-specific assumptions are not.
| Variable | Default | Description |
|---|---|---|
SLURM_MCP_HOME_DIR |
/home1/$USER |
Home directory (quota-limited) |
SLURM_MCP_DATA_DIR |
/home/$USER |
Data storage directory |
SLURM_MCP_SCRATCH_DIR |
/scratch |
Temporary staging area |
SLURM_MCP_HOME_QUOTA_GB |
500 |
Home quota threshold for warnings |
SLURM_MCP_PREAMBLE |
(empty) | Shell lines injected after the shebang into inline job scripts (e.g. module load cuda/12.1\nsource ~/.venv/bin/activate) |
Auto-QOS
When submit_job targets a partition in {A100-40GB, A100-80GB, 4A100} and no
--qos appears in extra_args, --qos=hpgpu is added automatically. Pass
--qos=<other> in extra_args to override.
Watchers
watch_job <id> registers an async watcher that polls squeue (falling back
to sacct) every 30 s (configurable). When the job reaches a terminal state
(COMPLETED, FAILED, TIMEOUT, CANCELLED, OUT_OF_MEMORY, …) the final
state and a summary are stored in the in-process watcher registry. Use
list_watches to inspect. Watchers live in-process and are lost if the server
restarts.
Set these in your shell profile or pass them when running the server:
SLURM_MCP_HOME_DIR=/home/myuser SLURM_MCP_DATA_DIR=/data/myuser .venv/bin/python server.py
Requirements
- Python 3.10+
- Slurm cluster with CLI tools (
sbatch,squeue,sacct,sinfo,scancel) - SSH key-based access to the cluster
mcpPython package (installed automatically bysetup.sh)
How It Works
The server is a single Python file (server.py) using the FastMCP framework. It runs on the cluster login node and wraps Slurm CLI commands as async MCP tools. Claude Code connects to it over SSH using the stdio transport.
Storage policy enforcement is built in — when you write files, the server checks if data files (model checkpoints, datasets, archives, etc.) are targeting a quota-limited home directory and suggests the data directory instead.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。