ROS 2 Workspace Inspector MCP
Provides tools for inspecting ROS 2 workspaces, including package discovery, dependency analysis, interface parsing, launch file analysis, robot description validation, and workspace diagnosis.
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., "@ROS 2 Workspace Inspector MCPScan the configured ROS 2 workspace and summarize its packages."
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.
ROS 2 Workspace Inspector MCP
ROS 2 Workspace Inspector MCP is a local-first, read-only static-analysis MCP server that gives Codex, Claude Code, Cursor, and other MCP clients structured information about ROS 2 workspaces. Seven static-analysis tools cover discovery, package structure, dependencies, interfaces, launch files, robot descriptions, and bounded workspace diagnosis without requiring ROS 2. It also provides two compact read-only resources and one guided review prompt.
7 analysis tools · 2 read-only resource forms · 1 guided review promptThe project inspects files only. It does not control robots, run ROS nodes, build workspaces,
execute launch or Xacro files, execute setup.py, publish topics, call services or actions, or
modify user files. All access stays inside the configured root sandbox. Only stdio is supported.
Tools
scan_workspace— Discover ROS 2 packages, workspace layout, build types, and basic manifest metadata.inspect_package— Inspect a package's manifest, build configuration, executables, launch files, interfaces, robot descriptions, and tests.analyze_dependencies— Analyze package dependencies, internal dependency edges, topological order, and dependency cycles.inspect_interfaces— Parse and inspect ROS 2 Msg, Srv, and Action interface definitions.analyze_launch_file— Statically analyze a Python, XML, or YAML ROS 2 launch file without executing it.inspect_robot_description— Inspect URDF structure and statically summarize Xacro files without expanding or executing them.diagnose_workspace— Run a consolidated, bounded diagnosis of the configured ROS 2 workspace.
Related MCP server: Code Context Provider MCP
Requirements and installation
Python 3.10 or newer
Clone the repository, enter it, and create the locked environment:
git clone https://github.com/doer0312/ros2-workspace-mcp.git
cd ros2-workspace-mcp
uv sync --lockedRun against a local workspace:
uv run ros2-workspace-mcp --root /absolute/path/to/your/ros2_wsThe equivalent module entry point is:
uv run python -m ros2_workspace_mcp --root /absolute/path/to/your/ros2_wsThe process communicates via stdout using the MCP protocol. Do not redirect ordinary logs to stdout. Invalid CLI input is reported on stderr with a non-zero exit status.
Client configuration
Codex TOML:
[mcp_servers.ros2-workspace-inspector]
command = "uv"
args = ["--directory", "/absolute/path/to/ros2-workspace-mcp", "run", "ros2-workspace-mcp", "--root", "/absolute/path/to/your/ros2_ws"]Claude Desktop JSON:
{
"mcpServers": {
"ros2-workspace-inspector": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/ros2-workspace-mcp", "run", "ros2-workspace-mcp", "--root", "/absolute/path/to/your/ros2_ws"]
}
}
}Copyable versions are available under examples/client-configs/. Both examples run the checked-out
repository environment and do not assume a PyPI release.
Try the included static demo without installing ROS:
uv run ros2-workspace-mcp --root ./examples/demo_wsMinimal request:
Scan the configured ROS 2 workspace and summarize its packages.Guided review example:
Use review_ros2_workspace with depth="standard".Available tools
The server exposes exactly seven tools:
scan_workspace— discover packages and basic metadata.inspect_package— inspect one package's manifest, build files, executables, and file layout.analyze_dependencies— parse declarations and build a workspace dependency graph.inspect_interfaces— parse one package's.msg,.srv, and.actionfiles.analyze_launch_file— statically analyze one Python, XML, or YAML launch file.inspect_robot_description— validate URDF or summarize unexpanded Xacro.diagnose_workspace— run a bounded, deduplicated workspace-wide diagnosis.
Example requests:
Use scan_workspace to inspect the configured ROS 2 workspace.
Inspect the package named demo_robot.
Analyze src/demo_robot/launch/demo.launch.py without running it.
Diagnose the configured workspace.scan_workspace takes no arguments and scans only the workspace supplied with --root. A compact
result looks like this:
{
"layout": "colcon_workspace",
"package_count": 1,
"packages": [
{
"name": "demo_pkg",
"relative_path": "src/demo_pkg",
"build_type": "ament_python",
"build_type_source": "inferred",
"valid": true
}
],
"issues": []
}The full result also includes server identity, canonical root and scan paths, package metadata,
valid/invalid counts, duplicate names, and structured issues. See docs/tools.md.
Resources and prompt
ros2-workspace://summaryis a fixed compact workspace summary.ros2-workspace://package/{package_name}is a package context template with strict name validation and ambiguity errors.review_ros2_workspace(focus="", depth="standard")guides quick, standard, or deep review using the seven tools without reading the workspace while the prompt is generated.
Resources are generated on read, have application/json MIME type, and never return raw project
files. The server intentionally does not expose an arbitrary file resource, subscriptions,
notifications, or filesystem watching. Client applications may display resources and prompts in
different ways. See docs/resources.md and
docs/prompts.md.
Security boundary
The server is bound to one validated, canonical workspace directory. Every file selected for
reading is resolved and checked with path containment rather than string prefixes. Directory
symlinks are never traversed; readable file symlinks must resolve inside the root. Text reads are
UTF-8, size-limited, and centralized. Python is parsed with AST, XML with ElementTree, and YAML
with safe_load; setup, launch, Xacro, CMake, and process declarations are never executed. See
docs/security.md for the complete boundary.
Development
uv run ruff check .
uv run ruff format --check .
uv run pytestFurther documentation:
License
Licensed under the Apache License 2.0. See LICENSE.
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/doer0312/ros2-workspace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server