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.
- Open Settings → Connectors → Add custom connector
- Name:
arrange.so, URL:https://arrange.so/mcp - Authentication: Bearer token → paste your
arr_…token - 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 | bashYou'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/mcpCursor, 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.
- In GPT Editor, create a new GPT
- Configure → Actions → Import from URL:
https://arrange.so/api/openapi.json - Authentication: API Key → Bearer token, leave blank (each user supplies their own)
- 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.mdLoad 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.