Quickstart

Three ways to create your first slide. Pick the path that fits your workflow.

1MCP — Connect your AI agent

Zero setup. No API key needed. Works with Claude Desktop, Cursor, Windsurf, and any MCP client.

🤖

Add one line to your MCP config

5 seconds · free to connect

Add this to your Claude Desktop config (claude_desktop_config.json):

Claude Desktop / Cursor
{
  "mcpServers": {
    "slideforge": {
      "url": "https://api.slideforge.dev/mcp"
    }
  }
}

Restart Claude Desktop. Then just ask:

“Create a KPI dashboard with Revenue $8.5M, Clients 234, Margin 71%, NPS 4.6”

Claude auto-authenticates via OAuth. You get $3 free credit on signup. Full MCP guide →

2Template Render — Instant slides

50 built-in templates. Send data, get a .pptx back instantly. $0.03-$0.05 per slide.

📐

POST /v1/render

< 1 second · $0.03-$0.05

curl
curl -X POST https://api.slideforge.dev/v1/render \
  -H "Authorization: Bearer sf_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "template": "kpi_dashboard",
    "brief": "Revenue $8.5M +14%, Clients 234 +9%, Margin 71%, NPS 4.6"
  }'
Python
import requests

resp = requests.post(
    "https://api.slideforge.dev/v1/render",
    headers={"Authorization": "Bearer sf_live_YOUR_KEY"},
    json={
        "template": "kpi_dashboard",
        "brief": "Revenue $8.5M +14%, Clients 234 +9%, Margin 71%, NPS 4.6",
    },
)
data = resp.json()
print(data["pptx_url"])  # download link — ready instantly

Returns pptx_url and preview_url immediately (200 OK). No polling needed. Full reference →

3Auto — Brief → recipe or composition

The default brief → slide path. A two-stage classifier picks a vetted recipe or composes components. Deterministic, sub-second, bounded at $0.05.

POST /v1/render (mode=auto)

< 1 second · $0.05

curl
curl -X POST https://api.slideforge.dev/v1/render \
  -H "Authorization: Bearer sf_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "auto",
    "brief": "Revenue bridge Q4 to Q1: Start $10.2M. New clients +$2.1M, upsell +$1.3M, churn -$0.8M, FX -$0.2M."
  }'
Python
import requests

resp = requests.post(
    "https://api.slideforge.dev/v1/render",
    headers={"Authorization": "Bearer sf_live_YOUR_KEY"},
    json={
        "mode": "auto",
        "brief": "Revenue bridge Q4 to Q1: Start $10.2M. New clients +$2.1M, upsell +$1.3M, churn -$0.8M, FX -$0.2M.",
    },
)
data = resp.json()
print(data["pptx_url"])  # synchronous — ready in <1s

Returns pptx_url and preview_url synchronously. The router never escalates — on no match, you get a structured refusal envelope (free, no charge) telling you what data or constraint is missing. Full reference →

Authentication

MCP: OAuth handles everything automatically — just connect and go.
API: Sign up, then create a key at Console → API Keys. Pass it as Authorization: Bearer sf_live_... Learn more →

What's next