- Home
- MCP servers
- SO-ARM100
SO-ARM100
- python
62
GitHub Stars
python
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can run an MCP server to let AI agents control your SO-ARM100 robot and connect it to any MCP client. This server exposes transports for real-time communication and can be controlled locally or remotely, enabling natural language instructions to move and calibrate the robot.
How to use
Start the MCP server in one of several transports depending on your setup. Use SSE for a persistent HTTP connection, or the Streamed-HTTP transport for broader client compatibility. You can also run the server in a local stdio setup for direct Python-based control.
Common workflows include starting the server with a transport, then connecting a client that sends natural language commands to operate the robot. You can verify the server is reachable and calibrate the robot before issuing complex instructions.
If you want to test the server locally, run the following to start the server in SSE mode, which provides a streaming endpoint for MCP clients:
mcp run mcp_robot_server.py --transport sse
How to install
Prerequisites: you need Python and a working virtual environment. You may also install lerobot separately if required by your setup.
Create a virtual environment, activate it, and install dependencies.
python -m venv .venv
source .venv/bin/activate # use .venv\Scripts\activate on Windows
pip install -r requirements.txt
It may be required to install lerobot separately, just use the official instructions from the lerobot setup.
## Configuration and MCP endpoints
The MCP server supports multiple connection methods. You can expose an HTTP transport or use a local stdio setup. The following examples show how to configure each transport and how to reference the server from an MCP client.
HTTP transports expose a URL that MCP clients connect to. Standard local stdio runs use a Python command to start the server directly.
## Examples and configs
{ "mcpServers": { "SO-ARM100 robot controller": { "type": "http", "url": "http://127.0.0.1:3001/sse", "args": [] } } }
## Manual stdio configuration
{ "mcpServers": { "SO-ARM100 robot controller": { "type": "stdio", "command": "/path/to/.venv/bin/python", "args": ["/path/to/mcp_robot_server.py"] } } }