Connect a Client
Add the Unbind MCP server to Claude, ChatGPT, Cursor and other clients.
Unbind has an MCP server built in. Connect an AI agent to it and the agent can deploy services, read logs, change variables and debug failed deployments for you, within the limits you set.
The URL
https://unbind.example.com/mcpYour own URL is shown under your avatar > Account Settings > Connected Apps.
Connect with OAuth
Most clients support this, and it is the easiest way. Add the URL as a custom connector or remote MCP server in your client. The client sends you to Unbind, where you pick what it may access and press Approve. See Connected Apps.
- Claude: Settings > Connectors > Add custom connector, and paste the URL.
- ChatGPT: Settings > Connectors, with developer mode on, and add the URL.
- Claude Code:
claude mcp add --transport http unbind https://unbind.example.com/mcpThen run /mcp inside Claude Code to sign in.
Connect with an API key
For clients without OAuth, or for agents that run unattended, use an API key as a bearer token.
claude mcp add --transport http unbind https://unbind.example.com/mcp \
--header "Authorization: Bearer unb_your_key"Clients configured with JSON, like Cursor, look like this:
{
"mcpServers": {
"unbind": {
"url": "https://unbind.example.com/mcp",
"headers": { "Authorization": "Bearer unb_your_key" }
}
}
}Try it
Ask something that only needs reading:
List my Unbind projects and tell me if any service is crashing.
Then something real:
The last deployment of the API service failed. Find out why.
The agent reads the deployment, pulls the build logs and tells you what broke.
Before you hand over the keys
Read Limiting Access. An agent with editor access to everything can redeploy anything you can.