congatudo_mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@congatudo_mcpwhat is the robot's battery level?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Congatudo MCP Server
HTTP MCP server (SSE transport) that exposes your Congatudo-powered Cecotec Conga robot vacuum as 26 tools for AI agents (Claude, Cursor, OpenAI Agents SDK, etc.).
Quick Start
# 1. Clone and configure
cp .env.example .env
# Edit .env → set CONGATUDO_HOST to your robot's IP
# 2. Build and start
docker compose up -d
# 3. Connect any MCP client to:
# http://<host>:8114/sseRelated MCP server: tuvio-vacuum
Environment Variables
Variable | Default | Description |
|
| Robot IP address |
|
| Robot HTTP port |
|
| REST API base path |
| (empty) | HTTP Basic Auth username (optional) |
| (empty) | HTTP Basic Auth password (optional) |
|
| MCP SSE bind address |
|
| MCP SSE port |
Tools
State
get_robot_state— full state (status, battery, attachments, map)get_robot_state_attributes— status / battery / attachment attributesget_robot_map— raw map JSON
Control
basic_control(action)— start / pause / stop / homelocate_robot()— plays a sound to find the robotmanual_control(action, movement_command?)— check / enable / disable / move
Cleaning Modes
clean_zone(zones, iterations?)— clean rectangular zone(s)clean_segments(segment_ids, iterations?, custom_order?)— clean specific roomsgo_to_location(x, y)— send robot to map coordinates
Settings (fan + water)
get_fan_presets()/set_fan_speed(name)— suction powerget_water_presets()/set_water_usage(name)— mopping water flow
Consumables
get_consumables()— wear levelsreset_consumable(type, sub_type?)— reset after replacement
Timers (cron-based)
get_timers()/create_timer(...)/update_timer(id, ...)/delete_timer(id)/toggle_timer(id)
Do Not Disturb
get_dnd_config()/set_dnd_config(enabled, start, end)— quiet hours
System
get_capabilities()— list what your robot supportsget_robot_info()— manufacturer, model, implementationget_wifi_status()— SSID, RSSI, frequency, IPsget_system_info()— hostname, arch, uptime, CPU, memory
Call get_capabilities() first — if a capability isn't listed, its tool will return a clean error.
Testing
A bash script validates the MCP connection and exercises 5 key tools:
./test_get_capabilities.sh
# or against a remote host:
./test_get_capabilities.sh http://192.168.1.100:8114It performs the full MCP handshake, calls get_capabilities, get_fan_presets, get_consumables, locate_robot (beeps the robot), and basic_control(action=home) (sends robot to dock). Output:
--- MCP Congatudo Test ---
1. get_capabilities PASS (21 capabilities)
2. get_fan_presets PASS (4 presets)
3. get_consumables PASS (4 consumables)
4. locate_robot PASS (robot beeps)
5. basic_control (HOME) PASS (robot returns to dock)
--- Results: 5 passed, 0 failed ---MCP Integration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"Congatudo": {
"command": "mcp-proxy.exe",
"env": {
"SSE_URL": "http://localhost:8114/sse"
}
}
}
}Cursor
In Cursor Settings → MCP Servers → Add new:
Name:
congatudoType:
SSEURL:
http://192.168.1.100:8114/sse
Opencode
Add to your opencode.json or .opencode.json:
{
"mcp": {
"congatudo": {
"transport": "sse",
"url": "http://192.168.1.100:8114/sse"
}
}
}OpenAI Agents SDK (Python)
from agents import Agent, Runner
from agents.mcp import MCPServerSse
async with MCPServerSse(
name="Congatudo",
params={"url": "http://192.168.1.100:8114/sse"},
) as server:
agent = Agent(name="Vacuum", mcp_servers=[server])
await Runner.run(agent, "Start cleaning the kitchen")Any MCP Client
Point your client to:
http://<host>:8114/sseThen call get_capabilities() first to discover what your robot supports.
Docker Commands
docker compose build # Build the image
docker compose up -d # Start in background
docker compose logs -f # Follow logs
docker compose down # StopThis server cannot be deployed
Maintenance
Related MCP Connectors
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
- mytesla.ioOAuthio.mytesla
Control your Tesla from your AI assistant - climate, charging, access, and security.
Connect AI agents to 1000+ apps with managed authentication and tool-calling.
A registry of AI agent tools — MCP servers, APIs, CLIs, SDKs — kept current by automated ingestion.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI assistants to control Tuya/Smart Life smart home devices via tools like on/off, brightness, color, and custom commands.101MIT
- FlicenseNot gradedqualityDmaintenanceEnables control of Tuvio/Tuya robot vacuum cleaners via a local hub, supporting commands such as start, pause, home, set mode, suction, water level, and more.-
- FlicenseNot gradedqualityCmaintenanceEnables Claude to control a Roborock vacuum via natural language, supporting commands like start, pause, dock, get status, and clean specific rooms.-
- AlicenseNot gradedqualityBmaintenanceEnables control and monitoring of a Dreame robot vacuum via MCP tools, including cleaning, status, and map viewing through the cloud API.4MIT