For the complete documentation index, see llms.txt. This page is also available as Markdown.

Celigo Developer Platform

Build, automate, and extend integrator.io from code. The API, CLI, and Platform MCP give you full control over every resource in your account — integrations, flows, connections, imports, exports, scripts, tools, AI agents, and more.

Developer tools

Get started

Every developer tool shares the same API token. Create one in integrator.io, then pick your path below.

One token, three tools

Your API token works with the REST API, CLI, and Platform MCP. Create it once at Resources → API tokens in integrator.io and you're ready for all three. Platform MCP can also sign in with your Celigo credentials — no token required.

1

Create an API token

Sign in to integrator.io, open Resources → API tokens, and select + Generate token. Copy the token — you'll need it next.

2

Make your first request

curl -s https://api.integrator.io/v1/integrations \
  -H "Authorization: Bearer <YOUR_API_TOKEN>"
npm install -g @celigo/celigo-cli
export CELIGO_API_TOKEN="<YOUR_API_TOKEN>"
celigo integrations list --format table

Add to your MCP client config — no token needed. Your client opens a browser sign-in on first use:

{
  "mcpServers": {
    "celigo": {
      "url": "https://api.integrator.io/celigo-mcp"
    }
  }
}

Then ask your agent: "List my integrations"

No OAuth support, or prefer a token? Add an Authorization: Bearer <YOUR_API_TOKEN> header. See Connect a client.

3

See the result

[
  {
    "_id": "5a1b2c3d4e5f6a7b8c9d0e1f",
    "name": "Shopify → NetSuite",
    "createdAt": "2024-05-12T17:02:11.213Z"
  }
]
┌──────────────────────────┬──────────────────┬─────────┐
│ _id                      │ name             │ mode    │
├──────────────────────────┼──────────────────┼─────────┤
│ 5a1b2c3d4e5f6a7b8c9d0e1f │ Shopify → NetS…  │ install │
└──────────────────────────┴──────────────────┴─────────┘

Your agent responds with a summary of your integrations — names, IDs, and status — pulled live from your account.

More resources