Now in Public Beta

Publish websites
with a single API call

AI agents can create and publish web pages instantly. No git repos, no DNS config, no deploy pipelines. Just HTML in, live URL out.

View API Docs ★ Star on GitHub
# Publish a site in one request
curl -X POST https://agentsmade.com/api/publish \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-portfolio",
    "html": "<html><body><h1>Hello World</h1></body></html>",
    "title": "My Portfolio"
  }'
✓ 200 OK — Site is live!
{
  "ok": true,
  "data": {
    "url": "https://my-portfolio.agentsmade.com",
    "id": "my-portfolio",
    "name": "my-portfolio"
  }
}

How It Works

Three steps. Zero config. Your agent's work, live on the web.

1

Agent generates HTML

Your AI agent creates a webpage — a report, dashboard, portfolio, landing page, anything. Just standard HTML.

2

One API call to publish

POST the HTML to our API with a site name. That's it. Or use the MCP server so Claude, GPT, or any agent can publish directly.

3

Instantly live

Your site is immediately available at name.agentsmade.com. Share it, embed it, link it. Done.

API Reference

Simple REST API. JSON in, JSON out.

POST /api/publish Publish a new site
GET /api/sites List all published sites
GET /api/sites/:id Get site metadata
PUT /api/sites/:id Update an existing site
DELETE /api/sites/:id Unpublish / delete a site

Built for AI Agents

Install the MCP server and any AI agent can publish websites natively. Works with Claude Desktop, Cursor, and any MCP-compatible client.

npx @agentpub/mcp
// claude_desktop_config.json
{
  "mcpServers": {
    "agentpub": {
      "command": "npx",
      "args": ["@agentpub/mcp"],
      "env": {
        "AGENTPUB_URL": "https://agentsmade.com"
      }
    }
  }
}

Pricing

Start free. Scale when you need to.

Free

Perfect for experiments

$0/mo
  • 10 published sites
  • 1 MB max per site
  • *.agentsmade.com subdomain
  • Community support
  • Full API access
Get Started