MCP

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.

claude_code_settings.json
{
  "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_listtool

List your projects and their most recent deploys.

coday_statustool

Look up the current status of a project or deploy by id.

  • idstringrequireddeployId (from coday_deploy) or projectId (from coday_list). Coday auto-detects which.
coday_deploytool

Validate the GitHub installation + repo access, then enqueue a deploy.

  • repoUrlstringrequiredGitHub repository URL.
  • projectNamestringProject name in your dashboard.
  • branchstringBranch to deploy (default: repository default).

Example prompts

Once the server is connected, your prompts can call the tools directly.

Claude Code
# 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?"