Developers

Build on MakeMySiteLive

Everything you can do in the dashboard, you can do in code. Drive deploys from a public REST API, or let an AI agent do it through our hosted MCP server.

REST API

Scoped API keys and simple JSON endpoints. Ideal for CI/CD, scripts, and integrations.

MCP server

A hosted Model Context Protocol server so AI assistants like Claude can publish your sites.

REST API

Base URL https://www.makemysitelive.com/api. Authenticate every request with a scoped key: Authorization: Bearer mmsl_…

Create a site

curl -X POST https://www.makemysitelive.com/api/v1/sites \
  -H "Authorization: Bearer mmsl_your_key" \
  -H "Content-Type: application/json" \
  -d '{"subdomain":"my-site","name":"My Site"}'

Deploy a ZIP

curl -X POST https://www.makemysitelive.com/api/v1/sites/SITE_ID/deploy \
  -H "Authorization: Bearer mmsl_your_key" \
  -H "Content-Type: application/zip" \
  -H "X-File-Name: site.zip" \
  --data-binary @site.zip
MethodEndpoint
GET/v1/me
GET/v1/sites
GET/v1/sites/{id}
GET/v1/check-subdomain?name=
POST/v1/sites
POST/v1/sites/{id}/deploy
POST/v1/sites/{id}/rollback
PATCH/v1/sites/{id}/protection
POST/v1/sites/{id}/tier
POST/v1/sites/{id}/subdomain
DELETE/v1/sites/{id}

API key scopes (least privilege)

account:read
View account details
sites:read
List and inspect sites
sites:write
Create, deploy, roll back, rename, protect
sites:delete
Permanently delete sites

MCP server

Connect an MCP-capable AI client (like Claude) to our hosted server and an agent can create, deploy, roll back, and protect your sites — conversationally, within your plan.

Server URL

https://mcp.makemysitelive.com/mcp

Add it as a remote connector in your client and sign in with your MakeMySiteLive account (OAuth). Grant read-only or read-write access — the agent acts only as you. It exposes read tools (account, list, inspect, check-subdomain) and, with write access, create / deploy / rollback / password-protection / delete.

Read the MCP guide →

Start building

Create a free account, generate a key, and deploy your first site from code.

Create your free account