Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server that gives AI coding assistants direct access to Slurm HPC clusters for job submission, file management, and shell access.

README.md

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=hpgpu when 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_PARTITIONS in server.py and the QOS policy notes in CLAUDE.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
  • mcp Python package (installed automatically by setup.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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.