WiseVision/mcp_server_ros_2

WiseVision/mcp_server_ros_2

Public implementation of MCP for ROS 2 enabling to interact with system visible various robots, capable of: List available topics List available services Call service Subscribe topic to get messages Publish message on topic and more

Category
Visit Server

README

WiseVision ROS2 MCP Server

Python server implementing Model Context Protocol (MCP) for ROS2.

Demo

Features

  • List available topics
  • List available services
  • Call service
  • Get messages from WiseVision Data Black Box (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.

API

Tools

  • ros2_topic_list

    • Retrun list of available topics
    • Output:
      • topic_name (string): Topic name
      • topic_type (string): Message topic type
  • ros2_service_list

    • Retruns list available services
    • Output:
      • service_name (string): Service name
      • service_type (string): Service type
      • request_fields (string array): Fields in service
  • ros2_service_call

    • Call ros2 service
    • Inputs:
      • service_name (string): Service name
      • service_type (string): Service type
      • fields (string array): Fields in service request filled with user data
      • force_call (bool): Force service call without every field in service field up, Default set to false
    • Output:
      • result (string): Return result of the service call
      • error (string): Return error in case of error
    • Features:
      • Check if service exists
      • Check if every field in service is provide
  • ros2_topic_subscribe

    • Subscribes to a ROS 2 topic and collects messages either for a duration or a message limit.
    • Inputs:
      • topic_name (string): Topic name
      • msg_type (string): Message type
      • duration (float): How long subscribe topic
      • message_limit (int): How many messages collect
      • Default to collect first message, waiting 5 seconds
    • Output:
      • messages: Serialized messages from topic
      • count: Number of collected messages
      • duration: How long messages has been collected
  • ros2_get_messages

    • Inputs:
      • topic_name (string): Topic name
      • message_type (string): Message type
      • number_of_msg(int): How many messages get from data black box
      • time_start (str): Start time for data retrieval. Only messages with timestamps after this will be returned
      • time_end (str): End time for data retrieval. Only messages with timestamps before this will be returned
    • Output:
      • timestamps: Time values used to indicate when each message was created, recorded, or received. Typically represented as ISO 8601 strings or UNIX epoch times. Used for filtering, ordering, and synchronizing data.
      • messages: Individual units of published data in ROS 2 topics. Each message contains a structured payload defined by its message type (e.g., std_msgs/msg/String).
  • ros2_get_message_fields

    • Inputs:
      • message_type (string): Message type
    • Output:
      • Returns the field names and types for a given ROS 2 message request type
  • ros2_topic_publish

    • Inputs:
      • topic_name (string): Topic name
      • message_type (string): Message type
      • data (dict): Dictionary with message fields
    • Output:
      • status: Status of publication
  • ros2_topic_echo_wait

    • Inputs:
      • topic_name (string): Topic name
      • message_type (string): Message type
      • timeout (float): Duration to wait for a message before giving up.
    • Output:
      • message: The deserialized ROS 2 message, converted to a Python dictionary (via message_to_ordereddict)
      • received: true, indicating the message was successfully received

Usage

MCP Server Configuration

[!NOTE] The server is running inside a Docker container as the root user. To communicate with other ROS components, they must also be run as root.

[!NOTE] Due to this issue, this MCP server doesn't work with Copilot in Visual Studio Code.

Docker run

Set MCP setting to mcp.json.

"mcp_server_ros_2": {
    "command": "docker",
    "args": [
        "run",
        "-i",
        "--rm",
        "wisevision/mcp_server_ros_2"
    ],
    }

Build docker image locally

git clone https://github.com/wise-vision/mcp_server_ros_2.git
cd mcp_server_ros_2
docker build -t wisevision/mcp_server_ros_2 .

Add this to AI Agent prompt:

You are an AI assistant that uses external tools via an MCP server.
Before calling any tool, always check your memory to see if the list of available tools is known.
	•	If you don’t have the current tool list in memory, your first action should be to call the list-tools tool.
	•	Never guess tool names or parameters.
	•	If a user requests something that may require a tool and you don’t have the right tool info, ask them or call list-tools first.
Once the tool list is loaded, you may call tools directly using their documented names and schemas.

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_server_ros_2

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured