Use the Celigo Platform MCP or the Celigo CLI to manage your integrator.io account without the UI. Both tools operate on the same resources as the REST API. This article explains what each tool does and when to use it.
For setup guides, command references, and examples, see the Celigo Developer Platform.
Celigo Platform MCP is a hosted MCP server. It lets AI agents manage your integrator.io account through natural language. Connect any MCP-compatible client Claude, Cursor, VS Code, or ChatGPT and authenticate with a Celigo API token. No installation required.
|
Endpoint (US) |
https://api.integrator.io/celigo-mcp |
|
Endpoint (EU) |
https://api.eu.integrator.io/celigo-mcp |
|
Transport |
Streamable HTTP |
|
Auth |
Authorization: Bearer YOUR_API_TOKEN |
These are two separate things. Celigo Platform MCP is Celigo's hosted server that AI agents connect to in order to manage your account. The mcpServers resource in integrator.io is a builder-side tool for creating your own MCP endpoints that expose your tools and APIs to external clients.
-
Connect a client - per-client setup guides for Claude, Cursor, VS Code, ChatGPT, and Windsurf
-
What you can do - worked examples with prompts and the tools each one calls
-
Tools reference - the full tool catalog
The Celigo CLI (@celigo/celigo-cli) is a command-line tool for managing integrator.io resources. It covers the same resources as the REST API connections, flows, exports, imports, scripts, tools, agents, and more. It adds multi-account profiles, safe field-edit commands, and account-wide utilities.
Requires: Node.js 22+
# Install
npm install -g @celigo/celigo-cli
# Authenticate
export CELIGO_API_TOKEN="<your-token>"
# Try it
celigo integrations list --format table
celigo flows list --jq '.[] | {_id, name, disabled}'
Installing the CLI also sets up domain-specific skills for Claude Code, Cursor, and Windsurf. Each skill gives your AI coding assistant accurate knowledge of integrator.io schemas and resource patterns so it can answer questions about integrator.io correctly.
-
Command reference - one page per resource: connections, flows, scripts, tools, agents, MCP servers, and more
Celigo Platform MCP, the Celigo CLI, and the Celigo REST API all work on the same integrator.io resources. Each suits a different way of working.
|
Type |
Best for |
|
Celigo Platform MCP |
AI agents that manage your account through natural language |
|
Celigo CLI |
Developers scripting, automating, or managing resources from the terminal |
|
Celigo REST API |
Direct programmatic access from your own application code |