Deploy from your AI editor.
Coday speaks the open Model Context Protocol. Add the Coday MCP server to Claude Code, Cursor, or Cline and your editor can list your projects, deploy a repo, and check status from a prompt.
Connect
The Coday MCP server lives at mcp.coday.io and uses OAuth 2.0 Dynamic Client Registration (RFC 7591) — Claude Code, Cursor, and Cline register themselves automatically.
{
"mcpServers": {
"coday": {
"url": "https://mcp.coday.io/mcp"
}
}
}On first use the editor opens a browser tab to coday.io, you sign in, approve the consent screen, and the editor receives a token scoped to your account. Revoke at any time from Dashboard → Settings.
Tools
Three tools exposed today. All return JSON; your editor's MCP host renders them inline.
coday_listtoolList your projects and their most recent deploys.
coday_statustoolLook up the current status of a project or deploy by id.
idstringrequired— deployId (from coday_deploy) or projectId (from coday_list). Coday auto-detects which.
coday_deploytoolValidate the GitHub installation + repo access, then enqueue a deploy.
repoUrlstringrequired— GitHub repository URL.projectNamestring— Project name in your dashboard.branchstring— Branch to deploy (default: repository default).
Example prompts
Once the server is connected, your prompts can call the tools directly.
# List projects "Show me my Coday projects." # Trigger a deploy "Deploy github.com/me/hello-world to my Coday account." # Check on a running deploy "What's the status of deploy abc123?"