slurm-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@slurm-mcpSubmit a training job on 4 GPUs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 outputJob 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 itFile 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
Related MCP server: Simple SSH MCP Server
Quick Start
1. Setup on the cluster
git clone https://github.com/dongwookim-ml/slurm-mcp.git
cd slurm-mcp
bash setup.sh2. 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 |
|
Watchers |
|
File Ops |
|
System |
|
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 |
|
| Home directory (quota-limited) |
|
| Data storage directory |
|
| Temporary staging area |
|
| Home quota threshold for warnings |
| (empty) | Shell lines injected after the shebang into inline job scripts (e.g. |
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.pyRequirements
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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dongwookim-ml/slurm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server