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

Enables AI tools like Windsurf and Claude to control NVIDIA Isaac Sim and Isaac Lab through natural language, providing tools for scene inspection, prim management, physics simulation, and robot spawning.

README.md

NVIDIA Isaac MCP

MCP (Model Context Protocol) server for NVIDIA Isaac Sim & Isaac Lab — enables AI tools like Windsurf, Claude Desktop, and Claude Code to control Isaac Sim through natural language.

Architecture

AI Client (Windsurf/Claude)  ←— MCP (stdio) —→  nvidia-isaac-mcp (this package)
                                                       │
                                                  TCP Socket :9876
                                                       │
                                                  isaacsim.mcp.server
                                                  (Extension inside Isaac Sim)

Two components:

  1. Isaac Sim Extension (exts/isaacsim.mcp.server/) — runs inside Isaac Sim, listens on TCP port 9876
  2. MCP Server (src/nvidia_isaac_mcp/) — external Python process that AI tools connect to

Prerequisites

  • NVIDIA Isaac Sim 5.x
  • Python 3.10+
  • uv (recommended)

Setup

1. Start Isaac Sim with the extension

cd <your-isaac-sim-install>
bash isaac-sim.sh \
    --ext-folder <path-to-nvidia-isaac-mcp>/exts \
    --enable isaacsim.mcp.server

The extension will start listening on 127.0.0.1:9876.

2. Run the MCP server

cd <path-to-nvidia-isaac-mcp>
uv run nvidia-isaac-mcp

3. Configure your AI tool

Windsurf / Claude Desktop — add to MCP settings:

{
    "mcpServers": {
        "isaac-sim": {
            "command": "uv",
            "args": ["run", "--directory", "<path-to-nvidia-isaac-mcp>", "nvidia-isaac-mcp"]
        }
    }
}

Available Tools

Core

| Tool | Description | |---|---| | ping | Check connectivity to Isaac Sim and return server version |

Scene Inspection

| Tool | Description | |---|---| | get_stage_info | Overview of the current USD stage (prims, up-axis, etc.) | | get_prim_info | Detailed info about a specific prim (attributes, transform, children) |

Prim CRUD

| Tool | Description | |---|---| | create_prim | Create a USD prim (Cube, Sphere, Cylinder, Cone, Plane, Capsule, Xform) | | modify_prim | Modify a prim's transform or visibility | | delete_prim | Remove a prim from the stage |

Code Execution

| Tool | Description | |---|---| | execute_code | Run arbitrary Python code inside Isaac Sim's runtime |

Physics & Simulation

| Tool | Description | |---|---| | create_physics_scene | Create a PhysicsScene prim to enable simulation | | add_rigid_body | Add rigid body physics to an existing prim | | add_ground_plane | Add a physics-enabled ground plane | | simulation_control | Play, pause, or stop the simulation |

Robots & Assets

| Tool | Description | |---|---| | spawn_robot | Spawn a built-in robot (franka, ur10, jetbot, etc.) | | list_available_robots | List available built-in robot assets | | load_usd_asset | Load any USD file as a reference into the stage |

Testing

# Direct TCP test (no MCP server needed, just the extension)
python tests/test_e2e.py

# MCP inspector
uv run mcp dev src/nvidia_isaac_mcp/server.py

Environment Variables

| Variable | Default | Description | |---|---|---| | ISAAC_SIM_HOST | 127.0.0.1 | Extension socket host | | ISAAC_SIM_PORT | 9876 | Extension socket port |

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.