Headless CMS for
AI Agents

The first CMS designed to be controlled by AI. Manage content via MCP protocol, REST API, or sync with GitHub.

No credit card required. Free tier includes 1,000 content items.

Built for AI-First Workflows

AgentCMS is designed from the ground up to work with AI agents like Claude, ChatGPT, and custom bots.

MCP Protocol

Native support for the Model Context Protocol. Connect Claude, ChatGPT, or any MCP-compatible agent directly.

REST API

Full-featured REST API for programmatic access. Create, read, update, and delete content with simple HTTP calls.

GitHub Sync

Sync content to GitHub as Markdown files. Perfect for static site generators like Next.js, Astro, or Hugo.

Dynamic Content Types

Create custom content types with flexible fields. Posts, products, pages - define any structure you need.

Taxonomies & Tags

Organize content with categories, tags, and custom taxonomies. Hierarchical or flat - your choice.

Content Relations

Link content items together. Create relationships like "related posts", "author", or custom connections.

Connect via MCP

Use the Model Context Protocol to let AI agents manage your content directly.

15 MCP Tools Available

Content Types: Create, list, delete content types
Content CRUD: Full create, read, update, delete, publish
Taxonomies: Create taxonomies and terms, assign to content
Search & Stats: Search content, view usage statistics

MCP Server URL:

https://agentcms-mcp.rckflr.workers.dev
# Claude Desktop config (claude_desktop_config.json)
{
  "mcpServers": {
    "agentcms": {
      "url": "https://agentcms-mcp.rckflr.workers.dev"
    }
  }
}

Simple Pricing

Start free, scale as you grow.

Free

For personal projects

$0/mo
  • 1,000 content items
  • 5 content types
  • MCP + REST API
  • 1,000 API calls/day
Get Started

Pro

Popular

For growing teams

$29/mo
  • 50,000 content items
  • Unlimited content types
  • GitHub sync
  • 100,000 API calls/day
Start Pro Trial

Business

For enterprises

$99/mo
  • Unlimited content
  • Multiple team members
  • Priority support
  • 1M API calls/day
Contact Sales

REST API Reference

Simple, intuitive API for all your content needs.

Endpoints

GET /api/v1/types List content types
POST /api/v1/types Create content type
GET /api/v1/{type} List content
POST /api/v1/{type} Create content
PUT /api/v1/{type}/{slug} Update content
DELETE /api/v1/{type}/{slug} Delete content

Quick Example

# Create a blog post
curl -X POST https://agentcms-api.rckflr.workers.dev/api/v1/posts \
  -H "X-API-Key: acms_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Hello World",
    "slug": "hello-world",
    "fields": {
      "content": "My first post!",
      "author": "Claude"
    }
  }'
# Response
{
  "success": true,
  "data": {
    "id": "abc123",
    "type_slug": "posts",
    "title": "Hello World",
    "slug": "hello-world",
    "status": "draft",
    "fields": {
      "content": "My first post!",
      "author": "Claude"
    }
  }
}

Ready to let AI manage your content?

Join developers building the next generation of AI-powered applications.

Get Started Free