Connect your editor to your deployment platform.
Deploy your vibe-coded repo to managed infrastructure in 30 seconds. One command, one prompt, live URL.
Install the Coday MCP server in any MCP-compatible client. One command, OAuth in your browser, then start deploying.
# Install the Coday MCP server $ claude mcp add coday https://mcp.coday.io # Open Claude Code and authorize $ claude > /mcp connect coday # Browser opens — sign in to Coday and approve. # Deploy with a prompt > Deploy github.com/me/my-app to production
Coday MCP uses OAuth 2.0 with PKCE. The first tool call opens a browser window for sign-in.
Read project metadata
Project status, URLs, and usage. Read-only.
Operate deployments
Provision, build, deploy, roll back, and monitor on your behalf.
Revoke anytime
Tokens live in your MCP client. Revoke from the Coday dashboard.
coday_deploy
Deploy a GitHub repository to managed infrastructure.
Inputs
- repoUrl (string) * — GitHub repository URL (https://github.com/owner/repo).
- projectName (string) — Project name shown in your dashboard.
- branch (string) — Branch to deploy. Defaults to the repository default branch.
Outputs
- projectId — Coday project identifier.
- deployedUrl — Live URL once deployment completes.
- status — QUEUED | BUILDING | DEPLOYING | LIVE | FAILED.
coday_status
Check the current status of a deployed project.
Inputs
- projectId (string) * — Coday project identifier returned by coday_deploy.
Outputs
- status — Current deployment status.
- deployedUrl — Live URL.
- lastDeployedAt — ISO 8601 timestamp of the most recent successful deploy.
- monthlyUsage — Cloud usage stats for the current billing period.
coday_list
List all projects in your Coday account.
Outputs
- projects — Array of { id, name, status, deployedUrl, plan }.
Deploy a Cursor-built Next.js app
> Deploy github.com/me/my-saas to production → projectId: cm_abc123 → status: BUILDING (~45s) → deployedUrl: https://my-saas.coday.app
Check status
>What's the status of my-saas? → LIVE · last deploy 12 min ago → usage: $42 / $200 cap (21%)
List projects
> Show me my Coday projects → my-saas (LIVE, Pro) → landing-v2 (LIVE, Basic) → side-experiment (BUILDING, Basic)
Is the MCP server free?
Yes — installation and tool calls are free. You pay only for an active Coday subscription (Basic $29/month or Pro $59/month) plus cloud infrastructure usage.
Which clients support MCP?
Claude Code, Cursor, Cline, and any other MCP-compatible AI editor. The protocol is an open standard — see modelcontextprotocol.io for the full list.
How does authentication work?
OAuth 2.0 with PKCE. The first tool call opens a browser window where you sign in to Coday and authorize the client. Tokens are stored securely by your MCP client.
How do I revoke a token?
Open your dashboard, then Settings → MCP tokens. View and revoke any active token there.