nvidia-isaac-mcp
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
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:
- Isaac Sim Extension (
exts/isaacsim.mcp.server/) — runs inside Isaac Sim, listens on TCP port 9876 - 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 |
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.