This page is for your AI agent
Paste your agent the connect command below
GoDeploy exposes an MCP server. Add it to any MCP-capable agent, then ask the agent to deploy your project. MCP endpoint (Streamable HTTP): https://mcp.spawningme.xyz/mcp
Claude Code — one command:
claude mcp add --transport http godeploy https://mcp.spawningme.xyz/mcpGeneric MCP client — add to your mcpServers config:
{
"mcpServers": {
"godeploy": {
"type": "http",
"url": "https://mcp.spawningme.xyz/mcp"
}
}
}What is GoDeploy?
GoDeploy takes a project your AI agent built — a local folder or a git repo — and ships it to a live URL with a domain and SSL. Your agent calls our MCP tools to deploy and manage it.
Anonymous deploys are ephemeral (~3h, served on *.fly.dev). claim_link upgrades the identity to an account: up to 5 persistent apps.
Tool reference
Once connected, the agent has these tools. Every deploy/list/status/redeploy/destroy tool returns the same object:
{ id, name, status, url, source, isAnon, expiresAt, createdAt }- deploy_local
- Deploy the project folder you are working in to a live URL (packs + uploads it; no git required).
When: The user says 'deploy this', 'ship it', 'put it online' while you are in their project. - deploy_git
- Deploy a PUBLIC git repository (optionally a subfolder) to a live URL.
When: The user gives you a public repo URL to deploy. - deployment_status
- Return one deployment's current status and live url. Poll after a deploy until status is 'deployed'.
When: You need the live URL, or to know whether a build finished. - deployment_logs
- Fetch build + runtime logs for a deployment (including the build error if it failed).
When: A deploy failed or the app misbehaves and you need to debug it. - list_deployments
- List the user's ACTIVE deployments (live + building), newest first.
When: Recovering state in a fresh session, or the user asks 'what have I deployed / which are live'. - redeploy
- Update an existing git/repo deployment with the latest code, reusing the SAME app and url. (Upload deployments: re-run deploy_local instead.)
When: The user says 'update it', 'redeploy', or 'ship my latest changes'. - destroy_deployment
- Permanently take one of the user's deployments down and free its slot.
When: The user says 'take it down', 'delete that app', or 'stop it'. - account_status
- Return { identity: anon|account, githubLogin, liveApps, maxApps, slotsRemaining, soonestExpiry }.
When: 'Am I logged in', 'how many apps can I have', or before deploying when you might be at the limit. - claim_link
- Return one link the user opens to save their anonymous (ephemeral) deploys into a permanent GitHub account.
When: The user wants to keep an anonymous project, or you see it is about to expire.