IvoryOS MCP serverο
Serve as a robot control interface using IvoryOS and Model Context Protocol (MCP) to design, manage workflows, and interact with the current hardware/software execution layer.
π Quickstart with Claude Desktopο
Install uv. Open up the configuration file, and add IvoryOS MCP config.
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"IvoryOS MCP": {
"command": "uvx",
"args": [
"ivoryos-mcp"
],
"env": {
"IVORYOS_URL": "http://127.0.0.1:8000/ivoryos",
"IVORYOS_USERNAME": "<IVORYOS_USERNAME>",
"IVORYOS_PASSWORD": "<IVORYOS_PASSWORD>"
}
}
}
}
π¦ Installationο
Install uv.
1. Clone the Repositoryο
git clone https://gitlab.com/heingroup/ivoryos-mpc
cd ivoryos-mcp
2. Install dependenciesο
When using IDE (e.g. PyCharm), the uv environment might be configured, you can skip this section.
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install -r uv.lock
βοΈ Configurationο
Option 1: in .env, change ivoryOS url and login credentials.
IVORYOS_URL=http://127.0.0.1:8000/ivoryos
IVORYOS_USERNAME=admin
IVORYOS_PASSWORD=admin
Option 2: In ivoryos_mcp/server.py, change ivoryOS url and login credentials.
url = "http://127.0.0.1:8000/ivoryos"
login_data = {
"username": "admin",
"password": "admin",
}
π Install the server (in Claude Desktop)ο
mcp install ivoryos_mcp/server.py
β¨ Featuresο
Category |
Feature |
Route |
Description |
|---|---|---|---|
βΉοΈ General Tools |
|
|
Get ivoryOS info and signature of the platform |
|
|
Check if system is busy and current/last task status |
|
βΉοΈ Workflow Design |
|
|
List all workflow scripts from the database |
|
|
Load a workflow script from the database |
|
|
|
Save a workflow Python script to the database |
|
|
|
Get all optimizers schema |
|
βΉοΈ Workflow Data |
|
|
List available workflow execution data |
|
|
Load execution log and data file |
|
π€ Direct Control |
|
|
Call platform function directly |
π€ Workflow Run |
|
|
Run workflow scripts repeatedly with static parameters |
|
|
Run workflow scripts with dynamic parameters |
|
|
|
Run workflow campaign with an optimizer |
|
π€ Workflow Control |
|
|
Pause or resume the workflow execution |
|
|
Finish current iteration, abort future executions |
|
|
|
Safe stop of current workflow |
β οΈ βΉοΈ are resources, but decorated as tool due to the current issue with MCP Python SDK and Claude Desktop integration.
Itβs recommended to only useallow alwaysfor βΉοΈ tasks
and useallow oncefor π€ tasks. These tasks will trigger actual actions on your hosted Python code.
π§ͺ Examplesο
The example prompt uses the abstract SDL example.
Platform infoο

Load prebuilt workflow scriptο
