mcp-server-isaaclab
Enables Claude to control NVIDIA Isaac Lab for RL training, environment management, and policy evaluation on a remote GPU instance via SSH tunnel.
README
mcp-server-isaaclab
MCP server for NVIDIA Isaac Lab — RL training, environment management, and policy evaluation from Claude.
Runs locally on your Mac and communicates with Isaac Lab on a remote Brev GPU instance through an SSH tunnel. All heavy simulation stays on the GPU; Claude just sends commands.
Not Isaac Sim. This server controls Isaac Lab (RL environments, training pipelines, policy evaluation). For low-level Isaac Sim control (USD prims, scene authoring, Kit commands), see mcp-server-isaacsim.
Architecture
┌──────────┐ stdio ┌──────────────┐ SSH tunnel ┌─────────────────┐
│ Claude │◄──────────►│ MCP Server │◄──────────────►│ Remote Agent │
│ (local) │ │ (local Mac) │ port 8421 │ (Brev GPU) │
└──────────┘ └──────────────┘ └────────┬────────┘
│
┌───────▼────────┐
│ Isaac Lab │
│ (Isaac Sim) │
└────────────────┘
MCP Server (this repo) runs on your Mac as a stdio MCP server. It opens an SSH tunnel to the Brev instance and forwards all requests to the Remote Agent — a FastAPI service running next to Isaac Lab on the GPU box.
Prerequisites
- Python 3.10+
- A Brev GPU instance (provision with
brev create) - SSH access to the instance (
brev ssh) - Isaac Lab installed on the instance (setup script included)
Quick Start
1. Install locally
git clone git@github.com:chloepilonv/mcp-server-isaaclab.git
cd mcp-server-isaaclab
pip install -e .
2. Provision a Brev GPU instance
brev create isaaclab-gpu --gpu A100
brev ssh isaaclab-gpu
3. Install Isaac Lab on the instance
# From your Mac:
scp scripts/setup-brev-isaaclab.sh ubuntu@<BREV_HOST>:~
ssh ubuntu@<BREV_HOST> bash ~/setup-brev-isaaclab.sh
This installs Isaac Lab + the skrl, rsl_rl, and sb3 RL frameworks.
4. Deploy the remote agent
./scripts/deploy-remote-agent.sh <BREV_HOST> ubuntu ~/.ssh/your_key
This copies the agent code, installs it, and starts it as a systemd service on port 8421.
5. Configure Claude
The project includes .mcp.json so Claude Code automatically picks up the server when you're in this directory.
For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"isaaclab": {
"command": "mcp-server-isaaclab"
}
}
}
For Claude Code in other projects, add to the project's .mcp.json:
{
"mcpServers": {
"isaaclab": {
"command": "mcp-server-isaaclab"
}
}
}
Tools
Connection
| Tool | Description |
|---|---|
connect_instance |
Establish SSH tunnel to Brev GPU instance |
disconnect_instance |
Tear down the connection |
instance_status |
GPU utilization, active sessions & jobs |
gpu_status |
Detailed GPU memory, temperature, utilization |
Simulation (Interactive)
| Tool | Description |
|---|---|
list_environments |
List all registered Isaac Lab tasks |
create_session |
Create an interactive simulation session |
step_session |
Step simulation forward (random or specified actions) |
reset_session |
Reset environment to initial state |
get_observation |
Get current observations + action/obs space info |
close_session |
Close session and free GPU memory |
Training
| Tool | Description |
|---|---|
start_training |
Launch an async RL training job |
monitor_training |
Get status, recent logs, latest checkpoint |
get_training_logs |
Read full training logs |
stop_training |
Stop a running training job |
list_training_jobs |
List all jobs (running, completed, failed) |
Evaluation & Files
| Tool | Description |
|---|---|
evaluate_policy |
Evaluate a checkpoint, optionally record video |
list_checkpoints |
Browse saved model checkpoints |
list_log_dirs |
Browse training log directories |
list_videos |
List recorded simulation videos |
read_remote_file |
Read any text/image file on the instance |
run_isaaclab_script |
Run arbitrary Isaac Lab Python scripts |
Example Conversations
Train a locomotion policy:
> Connect to my Brev instance at 203.0.113.42
> What environments are available for quadruped locomotion?
> Train Anymal-D on rough terrain with rsl_rl, 4096 envs, 1500 iterations
> Check on the training
> Evaluate the best checkpoint and record a video
Explore an environment interactively:
> Connect to my Brev GPU
> Create a session with Isaac-Cartpole-v0, 32 envs
> What does the observation space look like?
> Step 100 times with random actions — what are the rewards?
> Reset and try again
> Close the session
Monitor GPU and manage jobs:
> What's the GPU status?
> List all training jobs
> Stop the Ant training — it's not converging
> Show me the last 200 lines of logs from the Franka training
Supported RL Frameworks
| Framework | Best For | Notes |
|---|---|---|
| skrl | General purpose | Modern, modular, good default choice |
| rsl_rl | Locomotion | ETH RSL's framework, optimized for legged robots |
| sb3 | Prototyping | Stable Baselines 3, easy to use |
| rl_games | Multi-GPU | NVIDIA's framework, scales well |
Available Environments (selection)
| Category | Examples |
|---|---|
| Classic | Isaac-Cartpole-v0, Isaac-Ant-v0, Isaac-Humanoid-v0 |
| Manipulation | Isaac-Reach-Franka-v0, Isaac-Lift-Cube-Franka-v0, Isaac-Open-Drawer-Franka-v0 |
| Locomotion | Isaac-Velocity-Flat-Anymal-D-v0, Isaac-Velocity-Rough-Unitree-Go2-v0 |
| Navigation | Isaac-Navigation-Flat-Anymal-C-v0 |
Use list_environments to get the full list from your installation.
Project Structure
mcp-server-isaaclab/
├── src/mcp_server_isaaclab/
│ ├── server.py # MCP server (runs locally, exposes tools)
│ ├── connection.py # SSH tunnel + HTTP client manager
│ └── remote/
│ └── agent.py # FastAPI agent (runs on Brev GPU)
├── scripts/
│ ├── deploy-remote-agent.sh # Deploy agent to Brev
│ └── setup-brev-isaaclab.sh # Install Isaac Lab on instance
├── .mcp.json # Claude Code MCP config
├── pyproject.toml
└── README.md
Development
pip install -e ".[dev]"
ruff check src/
pytest
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 模型以安全和受控的方式获取实时的网络信息。