MicroCreatorr

For AI agents

Use MicroCreatorr from Claude, ChatGPT, or Cursor

MicroCreatorr exposes a Model Context Protocol (MCP) server with 40+ tools — import products, create designs, export PNGs, schedule posts, and publish to social without driving the browser UI.

1. Generate an API token

Go to Settings → MCP and create a personal token (mc_…). Generation, studio, export, and publish tools require Bearer auth.

2. Connect your agent

MCP endpoint:

https://www.microcreatorr.com/api/mcp-server/mcp

Cursor — add to `.cursor/mcp.json`:

{
  "mcpServers": {
    "microcreatorr": {
      "url": "https://www.microcreatorr.com/api/mcp-server/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_MC_TOKEN"
      }
    }
  }
}

Claude Desktop and ChatGPT Developer Mode: add a custom MCP connector with the same URL and Bearer header. Step-by-step copy-paste configs live on /settings/mcp.

3. Example prompts

  • “Import this AliExpress URL, pick an Instagram Story template, and give me the studio link.”
  • “Run create_and_publish_product_post for this product on my connected Instagram.”
  • “Generate a 12-post content calendar for this serum — bold tone — and save each as a design.”
  • “Render design abc123 to PNG and schedule it for tomorrow 9am on TikTok.”

Workflow tools

create_and_publish_product_postProduct URL → design → PNG → Instagram/TikTok
generate_content_calendar6–20 AI posts with templates (credit-free)
render_design_pngExport saved design to hosted PNG URL
schedule_postSchedule pre-rendered media for later publish
start_bulk_renderAsync catalog ZIP (products × templates)
import_product_urlScrape Amazon, AliExpress, Shopify, Jumia, …
create_design_from_product_urlOne-shot product page → studio design
publish_to_socialPublish image/video URL immediately

Full tool list (40+) including generate_image, update_design_text, get_brand_kit — visible on /settings/mcp.

REST API (Bearer token)

All major /api/* routes accept Authorization: Bearer mc_… in addition to browser sessions. Optional X-Team-Id scopes requests to a team workspace.

  • POST /api/content-calendar/generate — AI post batch
  • POST /api/bulk/render → poll GET /api/bulk/render/{jobId}
  • POST /api/video/render with { "async": true, "composition": … }
  • POST /api/social/publish — immediate publish
  • POST /api/url-metadata/batch — scrape product URLs (no auth)

Async jobs

Bulk catalog renders and video exports return jobId and pollUrl. Poll until status is completed (then use resultUrl) or failed.