Robolist MCP server
Plug the Robolist catalog into Claude Desktop, Cursor, or any MCP-compatible LLM client. No API key required.
What you get
search_robotsSearch robots
Filter the catalog by category, price, payload, reach, country, and claim status. Results are ordered by Product Score.
"Find cobots under $20,000 with at least 5 kg payload"
get_robotGet robot details
Full spec card for a single robot — description, price, payload, reach, certifications, and the canonical Robolist URL.
"Tell me more about the UR5e"
compare_robotsCompare robots
Side-by-side spec rows for 2–4 robots at once. Great for trade-off questions.
"UR5e vs Fanuc CRX-10iA vs Doosan A0509"
Setup
Add the Robolist MCP server to your client config. No account or API key needed.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"robolist": {
"transport": {
"type": "http",
"url": "https://robolist.ai/api/mcp"
}
}
}
}Cursor
Go to Settings → MCP → Add server and paste:
{
"mcpServers": {
"robolist": {
"url": "https://robolist.ai/api/mcp",
"transport": "http"
}
}
}Codex CLI / Continue / Goose / any MCP client
Point at the Streamable HTTP endpoint with no auth header:
# Any MCP-compatible client Transport : Streamable HTTP URL : https://robolist.ai/api/mcp Auth : none (no API key required)
For local testing, swap the URL to http://localhost:3000/api/mcp.
Limits
The MCP server is anonymous and free — 30 requests per minute per IP, no account required. For higher throughput or programmatic access with an API key, use the REST API.