-
-
Notifications
You must be signed in to change notification settings - Fork 192
2.3.78 Satellite ROS MCP Server
av edited this page Apr 12, 2026
·
2 revisions
Handle:
ros-mcp-server
ROS MCP Server implements the Model Context Protocol (MCP) to bridge LLMs (like Claude or GPT) with Robot Operating System (ROS). It allows LLMs to interact with ROS nodes, topics, and services.
harbor build ros-mcp-server
harbor up ros-mcp-serverThe server connects to a rosbridge_websocket node. Configure the host and port via harbor config:
# Point to the rosbridge on your host machine
harbor config set ros-mcp-server.rosbridge.host host.docker.internal
harbor config set ros-mcp-server.rosbridge.port 9090
harbor restart ros-mcp-serverFollowing options can be set via harbor config:
# Host for the ROS bridge websocket (robot side)
# Leave empty and set via harbor env to target your ROS environment
HARBOR_ROS_MCP_SERVER_ROSBRIDGE_HOST=
# Port for the ROS bridge websocket
HARBOR_ROS_MCP_SERVER_ROSBRIDGE_PORT=9090
# Persistent workspace for ROS MCP Server
HARBOR_ROS_MCP_SERVER_WORKSPACE=./services/ros-mcp-server
# Git reference for building from source
HARBOR_ROS_MCP_SERVER_GIT_REF=https://github.com/robotmcp/ros-mcp-server#mainharbor logs ros-mcp-serverEnsure rosbridge_suite is running on your robot or ROS environment and is accessible from the container.