ROS2 MCP Server
Enables AI tools to interact with ROS2 robotics systems through natural language commands. Supports topic publishing/subscribing, service calls, message analysis, and auto-discovery of ROS2 interfaces for debugging and controlling robots.
README
ROS2 MCP Server

A Python implementation of the Model Context Protocol (MCP) for ROS2. This server enables AI tooling to connect with ROS2 nodes, topics, and services using the MCP standard over stdio. It is designed to be the easiest ROS2 server to configure in the world.
🎯 Why Choose This MCP Server?
Save hours of development time with native AI integration for your ROS2 projects:
- ⚡ 1-minute setup - World's easiest ROS2 MCP configuration
- 0️⃣ Zero-friction setup - stdio transport, no brokers, no webserver.
- 🔌 Auto-discovery - a built-in “list interfaces” tool dynamically enumerates available topics and services together with their message/service definitions (fields, types, schema) — so the client always knows exactly what data can be published or called.
- 🤖 AI-powered debugging - Let AI help you troubleshoot ROS2 issues in real-time
- 📊 Smart data analysis - Query your robot's sensor data using natural language
- 🚀 Boost productivity - Control robots, analyze logs, and debug issues through AI chat
- 💡 No ROS2 expertise required - AI translates your requests into proper ROS2 commands
Perfect for: Robotics developers, researchers, students, and anyone working with ROS2 who wants to leverage AI for faster development and debugging.
🌍 Real-world examples:

✨ Features
- List available topics
- List available services
- Call service
- Get messages from data storage systems (influxDB alternative to Rosbag2)
- Subscribe topic to get messages
- Publish message on topic
- Echo message on topic
- Get fields from message type
Note: To call service with custom service source it before start server.
⚙️ Installation
Follow the installation guide for step-by-step instructions:
- 🧩 Install in Visual Studio Code Copilot
- 🤖 Install in Claude Desktop
- 💻 Install in Warp
- 🐳 Build Docker Image locally
🔧 ROS 2 Tools
📋 Topics
| Tool | Description | Inputs | Outputs |
|---|---|---|---|
ros2_topic_list |
Returns list of available topics | – | topic_name (string): Topic name <br> topic_type (string): Message type |
ros2_topic_subscribe |
Subscribes to a ROS 2 topic and collects messages for a duration or message limit | topic_name (string) <br> duration (float) <br> message_limit (int) <br> (defaults: first msg, 5s) |
messages <br> count <br> duration |
ros2_get_messages |
Retrieves past messages from a topic (data black box) | topic_name (string) <br> message_type (string) <br> number_of_msg (int) <br> time_start (str) <br> time_end (str) |
timestamps <br> messages |
ros2_get_message_fields |
Gets field names and types for a message type | message_type (string) |
Field names + types |
ros2_topic_publish |
Publishes message to a topic | topic_name (string) <br> message_type (string) <br> data (dict) |
status |
🛠 Services
| Tool | Description | Inputs | Outputs |
|---|---|---|---|
ros2_service_list |
Returns list of available services | – | service_name (string) <br> service_type (string) <br> request_fields (array) |
ros2_service_call |
Calls a ROS 2 service | service_name (string) <br> service_type (string) <br> fields (array) <br> force_call (bool, default: false) |
result (string) <br> error (string, if any) |
🐞 Debugging
Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm with this command:
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp_server_ros2 run mcp_ros_2_server
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
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.