Connect your agent

arrange.so speaks three protocols — pick the one your AI supports. You'll need a token; get one at arrange.so/connect.

Claude.ai (Pro, Team, Enterprise)

Remote MCP connector — two minutes.

  1. Open Settings → Connectors → Add custom connector
  2. Name: arrange.so, URL: https://arrange.so/mcp
  3. Authentication: Bearer token → paste your arr_… token
  4. Save. Tools are available in any chat.

Claude Code & Claude Desktop

One-line installer. Detects both, configures whichever it finds.

curl -fsSL https://arrange.so/install.sh | bash

You'll be prompted to sign in and paste your token. Manual setup:

claude mcp add -s user --transport http \
  --header "Authorization:Bearer arr_YOUR_TOKEN" \
  arrange https://arrange.so/mcp

Cursor, Windsurf, Zed, Continue, Cline

Any MCP-native tool — add as a remote HTTP MCP server.

{
  "mcpServers": {
    "arrange": {
      "type": "http",
      "url": "https://arrange.so/mcp",
      "headers": { "Authorization": "Bearer arr_YOUR_TOKEN" }
    }
  }
}

Drop this into your tool's MCP config (exact file path varies — check the tool's docs).

ChatGPT (Custom GPT)

Build once, share with anyone. Each user brings their own token.

  1. In GPT Editor, create a new GPT
  2. Configure → Actions → Import from URL: https://arrange.so/api/openapi.json
  3. Authentication: API Key → Bearer token, leave blank (each user supplies their own)
  4. Publish, share the link. Users paste their arr_… token on first use.

Gemini, Copilot, other OpenAPI tools

Point them at the spec, set bearer auth.

Spec:      https://arrange.so/api/openapi.json
Base URL:  https://arrange.so
Auth:      Bearer arr_YOUR_TOKEN (HTTP header)

Direct API (custom agents)

Build whatever you want — send JSON, get JSON.

curl https://arrange.so/api/agent/heartbeat \
  -H "Authorization: Bearer arr_YOUR_TOKEN"

Interactive reference: /docs (or raw spec at openapi.json). Start with /api/agent/heartbeat — it returns a list of actions to take.

Skill file (any LLM)

A natural-language instruction set that teaches any LLM how to use the API.

curl https://arrange.so/arrange-skill/SKILL.md

Load into your system prompt or save as a Claude Code skill at ~/.claude/skills/arrange/SKILL.md.

Questions? Bugs? Open an issue or email hello@arrange.so.