Slideforge
SlideForge is a deterministic PowerPoint compiler/MCP server for AI agents — no LLM in the render path. You can:
Create single slides or full decks from structured intents or prose briefs, using 40+ form types / 200+ catalog patterns (KPI, Gantt, org chart, funnel, SWOT, timeline, etc.) and render native, editable
.pptxfiles.Control rendering modes:
mode=safe(validate-then-render, bills only if faithful),mode=code(custom python-pptx sandbox), and freedry_runpre-flight validation/fidelity forecast.Get fidelity assurance: each render includes a fidelity manifest indicating verbatim, mixed, or AI-completed content; apply strict quality gates for density, font size, truncation, etc.
Plan slides from a prose brief with ranked form/variant candidates, confidence scores, and next actions — free.
Browse the catalog for 200+ slide patterns, JSON Schemas, examples, code widgets, and theme layouts — free.
Assemble/fork decks, build on uploaded brand themes/templates, and inherit logos, fonts, and styling.
Upload or generate assets: logos, theme
.pptxfiles, images, PDF-to-editable-slide conversion, and AI-generated images.Translate decks into 32 languages while preserving formatting, including notes and tables ($0.02/slide).
Manage accounts and jobs: balance, usage, job history, webhooks, secure short-lived download links, security posture, and delete jobs/assets.
Inspect/repair decks via free Deck Doctor endpoints (
/v1/inspect,/v1/repair) for overflow, hidden content, contrast, and deterministic fixes.
Pricing: $0.05 per slide created; planning, catalog browsing, and validation are free.
Generates PowerPoint (.pptx) files that are fully compatible with Google Slides, allowing users to create professional presentations using AI-designed layouts and consulting frameworks.
mcp-name: dev.slideforge/slideforge
SlideForge MCP — PowerPoint slides for AI agents
SlideForge (slideforge.dev) — the deterministic PowerPoint compiler for AI agents. Typed slide intents → native, fully editable .pptx in under a second, with a fidelity manifest that states exactly what was bound verbatim. Built by Smart Data Brokers GmbH, Switzerland.
Remote MCP server + REST API. No local install, no Python environment, no python-pptx boilerplate. OAuth 2.1 for Claude Desktop & ChatGPT; API key for everything else.
⚠️ Disambiguation
"SlideForge" is used by multiple unrelated projects. This is SlideForge by Smart Data Brokers GmbH at slideforge.dev. Not affiliated with:
slideforge.io— a separate AI presentation generatorslideforge.fr— a French document polishing serviceblink.new/p/slideforge-app— an unrelated web appOther
github.com/*/SlideForgerepositories outside thesmartdatabrokersorg
When citing or linking, prefer slideforge.dev or "SlideForge by Smart Data Brokers."
Related MCP server: marp-agent-mcp
Why SlideForge
A compiler, not a generator. A slide is a typed intent: pick a
formfrom 200+ catalog patterns (KPI dashboards, waterfalls, Gantt plans, org charts, funnels, …), put your real content in typed fields. A deterministic engine lays it out — no LLM in the render path, same input → same slide, sub-second.The honesty layer. Every response carries a fidelity manifest: per field, was your content bound
verbatim,mixed, orai_completed? Apartialgrade means some supplied content didn't make it onto the slide — the manifest names what was dropped; never deliver apartialrender without telling the user what's missing. Slides with blocking defects don't bill (usable-or-free). If your agent feeds numbers into slides, this is what makes the output auditable.Native, editable .pptx. Real shapes and text boxes — not images, not HTML exports. Openable and editable in PowerPoint.
Escape hatch included — under the same trust contract.
mode=coderuns your own python-pptx in a sandbox (widget/chart toolkit, theme injected, intent fields render as chrome). Code renders are linted, measured (layoutblock +presentation_ready), and provenance-checked — agents may escape the layout grammar, never the trust grammar.Your template, natively. Upload your company's .pptx — slides are built ON your file (theme, masters, fonts), not a color-matched imitation.
Check for free.
dry_runvalidates any payload + forecasts fidelity at $0 — or usemode=safeto validate-then-render in ONE call (renders + bills only if faithful; else a $0 report with the fix).verifytiers on code renders (lintdefault,lint+vlmadds a visual second-look).quality_profile(executive/technical/appendix) sets the readiness bar the layout is judged against — answered on any form. Free deck inspect (POST /v1/inspect) runs a deterministic quality report on any pptx.97% quality parity with Gamma in our own blind side-by-side benchmark (internal instrument, not third-party).
Pricing in one breath: creating a slide 5¢ · transforming a slide 2¢ (translate, repair) · checking free. 60 free slides on signup, no subscription. slideforge.dev/pricing
Quick Start
One click, no config file:
VS Code (Copilot agent mode) signs you in over OAuth on first use — no key, no JSON file.
Cursor installs with an API-key placeholder: after clicking, replace sf_live_YOUR_KEY in the
server's headers with a real key from the console. Cursor's
own OAuth browser launch is broken as of 3.16.17, so the key is the working path there today.
Claude Code
claude mcp add --transport http slideforge https://api.slideforge.dev/mcp/Then just ask: "Make a KPI dashboard slide: revenue $12.4M (+18% YoY), 847 new clients, NPS 62."
Optional — install the skills + bundled server config as a plugin:
/plugin marketplace add smartdatabrokers/slideforge-mcp
/plugin install slideforge@slideforge-mcpOr copy any folder from skills/ into ~/.claude/skills/ (personal) or .claude/skills/ (project).
Claude Desktop (OAuth — no key needed)
Settings → Connectors → Add custom connector → https://api.slideforge.dev/mcp/ — sign in with Google on first use.
ChatGPT (Developer Mode)
Settings → Apps → Advanced → Developer mode → Add custom connector → https://api.slideforge.dev/mcp/ (OAuth).
Cursor / Windsurf / Codex CLI / any MCP client (API key)
{
"mcpServers": {
"slideforge": {
"url": "https://api.slideforge.dev/mcp/",
"transport": "streamable-http",
"headers": { "Authorization": "Bearer sf_live_YOUR_KEY" }
}
}
}Get a key: slideforge.dev → Console → API keys. (Codex CLI and other AGENTS.md-native tools: see AGENTS.md.)
Run it locally (stdio — for container/offline clients)
Most clients should use the hosted remote server above (no install). But if your client boots
MCP servers from a container or a local stdio process, run the bundled local server. It's a
thin REST client over api.slideforge.dev — it holds no engine logic; the tool schemas are baked
in locally (so discovery works offline, no key) and each call forwards to the SlideForge REST API
authenticated with your key.
pip install slideforge-mcp # or: uv pip install slideforge-mcp
export SLIDEFORGE_API_KEY=sf_live_YOUR_KEY
slideforge-mcp # speaks MCP over stdioOr via Docker:
docker build -t slideforge-mcp .
docker run -i -e SLIDEFORGE_API_KEY=sf_live_YOUR_KEY slideforge-mcpClient config (stdio):
{
"mcpServers": {
"slideforge": {
"command": "slideforge-mcp",
"env": { "SLIDEFORGE_API_KEY": "sf_live_YOUR_KEY" }
}
}
}Schema discovery (tools/list) needs neither a key nor network; tool calls need the key.
LangChain / LlamaIndex (agent frameworks)
No SlideForge SDK needed — both load the MCP tools directly:
pip install langchain-mcp-adapters # or: pip install llama-index-tools-mcpfrom langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({"slideforge": {
"transport": "streamable_http",
"url": "https://api.slideforge.dev/mcp/",
"headers": {"Authorization": f"Bearer {API_KEY}"}}})
tools = await client.get_tools() # 7 tools, drop into any LangGraph agentRunnable examples + the LlamaIndex equivalent: examples/.
Need a key? Sign up — 60 free slides, no credit card — then grab it
at console/keys.
REST (no MCP)
curl -X POST https://api.slideforge.dev/v1/render/intent \
-H "Authorization: Bearer sf_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"form": "kpi_metrics", "headline": "Q3 at a glance",
"data": {"metrics": [{"label": "Revenue", "value": "$12.4M", "delta": "+18% YoY"},
{"label": "New clients", "value": "847"},
{"label": "NPS", "value": "62"}]}}'Full REST reference: slideforge.dev/docs/api
The 7 MCP tools
Tool | What it does | Cost |
| ONE slide from a structured intent (form + typed fields) or a brief; | $0.05 (usable-or-free) |
| Whole deck: | N × $0.05 |
| Brief → top form/variant candidates with confidence. | Free |
| 200+ patterns with per-form JSON Schemas + copy-pasteable example intents, themes, the code-mode widget toolkit. Pass an uploaded | Free |
| Translate any PPTX preserving formatting (32 languages). | $0.02/slide |
| Logos, brand template PPTX, images; | Free / $0.01/page / $0.05/image |
| Balance, usage, jobs, security status, feedback, | Free |
dry_run: true on create tools = validation + fidelity forecast at $0.
Two more tools (generate_report, manage_connections — data-driven reports from connected tools like Zoho Sprints) exist behind an enterprise gate and are not served by default.
Also on REST (for now): the Deck Doctor. POST /v1/inspect — a free deterministic Deck Quality Report for any pptx (overflow via real font metrics, content hidden behind shapes, off-canvas leftovers, WCAG contrast). POST /v1/repair — deterministic fixes, never your words, $0.02/repaired slide, free dry-run quote. Docs
Brand kits
A brand kit is your org's identity — colors, type, logo, and (optionally) an uploaded
.pptx/.potx/.thmx template — stored under a slug and rendered against on every call.
Use one: pass
theme_id=<slug>tocreate_slide/create_deckfor the kit's default version, or<slug>@<n>to pin a specific version.Create one:
upload_asset(purpose="brand", data=<base64 .pptx/.potx/.thmx>)— decks then render NATIVE, built on your own template file. (purpose="theme"is the same path under its old name and still works.)Discover:
browse_catalog(type="brands")lists your kits with their versions.Check fidelity:
manage_account(action="brand_report", theme_id=<slug>)returns the per-token fidelity report for a kit.Export or import from a URL: full kit CRUD, DTCG
tokens.json/.potx/.thmxexport, and importing an identity straight from a company's domain are REST-only today —/v1/brands(not yet mirrored as MCP tools).
Security
Tool result bodies are credential-free — no signed URLs in responses. Previews are embedded inline (the agent looks at the PNG directly); the .pptx downloads via header-auth (
Authorization: Bearer+ ownership check), not a bearer-in-URL.Need a shareable link instead?
POST /v1/jobs/<job_id>/download-urlmints a short-TTL, single-use, revocable link.Artifacts auto-delete 30 days after creation.
Every download is audit-logged.
manage_account(action=security_status)discloses the full posture in-band.
Agent skills (this repo)
Copy-in skills that teach an agent to use SlideForge well — see skills/:
Skill | Teaches |
Intent-first slide/deck creation, schema discovery, dry-run, fidelity manifest, headless preview | |
Free Deck Quality Report on any pptx + deterministic repair | |
Format-preserving PPTX translation | |
PDF → editable PPTX extraction |
For Codex CLI / Cursor / Copilot and other AGENTS.md-native tools, AGENTS.md carries the same guidance in the portable format. CLAUDE.md imports it for Claude Code.
Headless usage (Claude Code / Codex CLI)
No inline widgets in a terminal, but the tool result already embeds the preview PNG inline — the agent reads it directly out of the response, no fetch needed. The .pptx downloads via header-auth:
curl -H "Authorization: Bearer sf_live_YOUR_KEY" \
-o deck.pptx https://api.slideforge.dev/v1/jobs/<job_id>/pptx # ownership-checkedTo hand off a shareable link instead of the raw file, mint a single-use one:
POST /v1/jobs/<job_id>/download-url — short-TTL, revocable, works once.
The self-review loop (render → view inline preview → fix → re-render) is documented in examples/claude-code.md.
How it compares
SlideForge | python-pptx | Prompt-only AI decks | |
Editable native .pptx | ✅ | ✅ | often images/exports |
Deterministic (same input → same slide) | ✅ | ✅ (your code) | ❌ |
States what was AI-touched (fidelity manifest) | ✅ | n/a | ❌ |
Layout quality without hand-coding | ✅ 200+ patterns | ❌ DIY | varies |
Hosted, agent-native (MCP + REST) | ✅ | ❌ local | partial |
Free pre-flight validation | ✅ dry_run | n/a | ❌ |
Links
Website: slideforge.dev · Pricing: /pricing · Trust & honesty layer: /trust
Docs: REST · MCP · Quickstart · Deck Doctor
Smithery: smartdatabrokers/slideforge
X / Twitter: @slideforgedev
License
MIT (this repo: skills, examples, docs). The SlideForge service itself is a commercial API.
Available Tools
7 toolsbrowse_catalogBrowse SlideForge's Catalog (Unified Discovery)ARead-onlyIdempotentInspect
Browse the PowerPoint slide catalog progressively. No args -> form overview (when-to-use, bound fields, variant counts). family= -> variant one-liners. q= -> ranked search. variant=/prior_id= -> example payload. type=schema + family -> a compact family-level variant chooser (not a sendable contract); type=schema + family + variant -> that variant's exact payload contract (JSON Schema, capacity, field mapping, examples). Free. Code path: type=widgets = the add_widget() catalog (name= for its contract + thumbnail); type=helpers = python-pptx helper signatures. type=themes + an uploaded theme_id -> that template's branded FURNITURE layouts (its own cover/agenda/divider/closing slides + fill schemas + previews) — render via create_slide(form=template_layout, theme_id, data={layout, fills}).
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Semantic search across all variants; returns ranked form/variant matches with scores. | |
| top | No | Max results (with type=themes). | |
| name | No | Widget name (with type=widgets): returns the full contract + worked example + a rendered thumbnail. | |
| type | No | Omit for the form overview (or family=/q= to drill in). schema (+family, optionally +variant=) = schema-first discovery: family only returns a compact variant chooser; family+variant returns that variant's exact machine-readable payload contract (JSON Schema for data, capacity limits, intent-field mapping, examples). widgets = the add_widget() catalog for mode=code (name=<widget> for its contract). helpers = python-pptx helper signatures. themes = list themes (built-in + your saved); Default appears first and can be omitted, or use any returned id as theme_id. brands = your brand kits with versions (theme_id=<slug> renders the default version, <slug>@<n> pins n). | |
| limit | No | Max results (with q= or family=). | |
| family | No | ||
| offset | No | Pagination offset (with q= or family=). | |
| source | No | Theme source filter (with type=themes). Default all (built-in + your saved). | |
| variant | No | ||
| prior_id | No | ||
| theme_id | No | With type=themes: an uploaded theme's id -> its branded furniture layouts + fill schemas (render via create_slide(form=template_layout)). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the description's added transparency about result shapes per mode, the 'Free' cost signal, capacity limits, examples, thumbnails, and the explicit 'not a sendable contract' warning is strong value beyond structured data. The description also prevents misuse by clarifying that certain outputs are for chooser/discovery and not executable contracts. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but not wasteful — nearly every clause states a distinct mode or constraint, and the first sentence front-loads the core browsing behavior. That said, the heavy semicolon-separated run-on structure and shorthand such as 'bound fields' and 'FURNITURE' make parsing harder than necessary, so a bit more grouping or bolding would improve scannability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For an 11-optional-parameter, multi-mode discovery tool with no output schema, the description covers most combinations, expected outputs, and even the follow-up rendering path via create_slide. Minor gaps remain, such as how q interacts with family, what type=schema alone returns, and precise return shapes for search results, but these are relatively small given the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema leaves several parameters like family, variant, and prior_id without property descriptions, but the description fills those gaps with concrete mode formulas: 'family=<form> -> variant one-liners', 'variant=/prior_id= -> example payload', and 'type=schema + family + variant' for the exact machine-readable contract. It also maps the ambiguous type parameter across schema, widgets, helpers, themes, and brands, adding meaning far beyond the raw schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific action and resource — 'Browse the PowerPoint slide catalog progressively' — and then enumerates the different browsing surfaces (form overview, variants, search, contracts, widgets, helpers, themes). This makes the tool's purpose distinct from siblings like create_slide, plan_slide, and create_deck, which actually generate presentations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit mode-selection guidance: 'No args -> form overview', 'family=<form> -> variant one-liners', 'q=<text> -> ranked search', and it warns that 'type=schema + family' is 'not a sendable contract' while adding variant yields the exact payload contract. It also connects to a sibling for the next step: the theme results 'render via create_slide(form=template_layout, theme_id, data={layout, fills}).' It lacks an explicit global when-not-to-use statement versus alternatives, but the context is otherwise strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_deckCreate Multi-Slide DeckAInspect
Create a complete PowerPoint presentation (.pptx): a whole multi-slide deck, native and editable, in one call. slides is a list of create_slide intents (same form menu + data shapes — see create_slide). Slides fill in parallel and merge into one themed PPTX with page numbers. Include furniture: a hero_statement cover, section_divider breaks, and a closing (hero_statement variant=contact_closing via blocks-free slots).
BLOCKED ($0)? If an error has can_autofix:true, merge its patch into the args at patch_target. Unchanged retries repeat the block. New form: browse_catalog(type=schema) first.
Also: mode=assemble merges existing slide job_ids as-rendered (free; theme_id does NOT re-theme them — render with create_deck(slides=[…], theme_id=…) for a unified theme); mode=fork clones a deck (free). Polling: deck_id == job_id — manage_account(action=job, job_id=).
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Default render. assemble/fork are free deck plumbing. | |
| name | No | ||
| title | No | Deck title (PowerPoint metadata) | |
| slides | No | each item is a create_slide intent (same form menu, typed fields, and data shapes as create_slide). | |
| deck_id | No | Existing deck ID (for mode=fork, or mode=render to update) | |
| dry_run | No | Deck-level free pre-flight (cost:0, NO render/PPTX): returns a per-slide validation manifest [{i, form, fidelity_forecast, status, errors}] so you can fix bad slides before spending. A deck is one artifact, so validation is all-or-nothing — put dry_run here, not on individual slides. Resend without dry_run to render. | |
| imagery | No | Deck-level imagery mode, inherited by every slide (a slide-level imagery wins). See create_slide.imagery. | |
| job_ids | No | Slide job IDs to merge (for mode=assemble) | |
| logo_id | No | Optional brand logo (from upload_asset purpose=logo) applied as chrome to every content slide in the deck. | |
| styling | No | Deck-level topical-design switch, inherited by every slide (a slide-level styling wins). See create_slide.styling. | |
| language | No | Target language | |
| theme_id | No | ||
| direction | No | Deck-level writing direction, inherited by every slide (a slide-level direction wins) — set it once for an Arabic/Hebrew deck. Covers/dividers rendered on an UPLOADED brand template keep that template's own layout direction. See create_slide.direction. | |
| imagery_tag | No | Deck-level subject declaration, inherited by every slide (a slide-level imagery_tag wins). Declare it once for a whole deck. See create_slide.imagery_tag. | |
| force_render | No | IGNORED (deck-level). pptx_url is always returned when at least one slide rendered, so there is nothing to force. Still meaningful on create_slide. | |
| allow_partial | No | IGNORED. A deck bills per rendered slide and always returns its pptx; slides that failed or rendered badly are free and named in repair_actions. | |
| strict_policy | No | Optional CI-style gate for automated report pipelines. dry_run returns policy_result; render returns rejected/cost:0 if the policy fails. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes far beyond the annotations: it discloses parallel slide rendering and merge behavior, furniture expectations, dry_run pre-flight with no render/cost, free modes, billing per rendered slide, ignored parameters (force_render/allow_partial), strict_policy rejection behavior, and deck_id==job_id polling. It also explains can_autofix patch recovery, which is behavior not visible from the schema or annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and packs useful information efficiently, with semicolon-joined clauses and clear paragraph breaks. It is dense and somewhat sprawling toward the end ('Also:', 'Polling:'), but for a 17-parameter deck-builder tool the detail is largely earned.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having no output schema, the description covers the critical output behaviors: pptx_url always returned, dry_run validation manifest, policy failure returning rejected/cost:0, and deck_id==job_id for polling. It does not give a full response shape or explicit worked example, but what an agent needs to invoke and monitor the call correctly is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 88% schema coverage, the schema already carries the baseline, and the description adds value on top: it explains that slides are create_slide intents, that assemble/fork have free/no-retheme semantics, and that deck-level parameters inherit with slide-level wins. It doesn't fully document every parameter (e.g., title, theme_id), but it meaningfully enriches the high-leverage ones.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Opens with a specific verb+resource: 'Create a complete PowerPoint presentation (.pptx): a whole multi-slide deck, native and editable, in one call.' It differentiates from create_slide by emphasizing multi-slide and one-call deck construction, and further clarifies what the deck includes (cover, dividers, closing, page numbers).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives concrete mode guidance: render vs mode=assemble (merge job_ids as-rendered, theme_id does not re-theme) vs mode=fork, and points to manage_account for polling and browse_catalog for blocked new forms. It does not explicitly state when to prefer create_slide or plan_slide, though the 'multi-slide deck' framing implies the boundary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_slideCreate or Inspect a SlideAInspect
Create one PowerPoint slide (.pptx, native, editable) from a structured intent in ONE call: pick a form from the menu and put your content in the typed fields (placed on the slide as given), or pass a brief and let the server route it. Fields tagged (per-form) bind only where the form has that slot — ignored-with-warning elsewhere; see each form's binds in browse_catalog.
BLOCKED ($0)? If an error has can_autofix:true, merge its patch into the args at patch_target. Unchanged retries repeat the block. New form: browse_catalog(type=schema) first.
FORM MENU: agenda_list: an ordered list of sections/topics or learning objectives to walk through bar_rank_chart: bars comparing magnitudes across categories calendar_grid: events on a real calendar - week planner (day x hour) or month grid with event chips (data.events) card_grid: several equal, unordered peer blocks (features, options, pillars, a concept's defined parts, rules/guidelines/common mistakes) case_story: one named story told as evidence: challenge, action, measured result comparison_matrix: options x criteria grid: data.columns x data.rows cycle_flow: a closed loop of ordered stages where the last feeds the first (recurring process) data_table: a plain factual table of records by fields editorial_split: two side-by-side halves: contrast (before/after, problem/solution) or copy/numbered steps beside a picture (image_src) exercise_prompt: an exercise/practice/discussion prompt: instruction + hints; optional problem items with blank answer boxes funnel: a quantity narrowing through ordered stages gantt_plan: tasks as bars across named periods on a schedule grid gauge_score: one score on a dial against a scale hero_statement: a statement slide: covers (typographic/image/exec), from->to/thesis-quote transitions, statement/contact/next-steps closings; supporting points -> takeaway_stack, contacts -> data.contacts, next steps -> data.next_steps hub_spoke: one central element with several elements connected around it image_story: a picture shown WHOLE (uncropped) + prose, or a 1-6 picture/placeholder gallery (data.images); points beside a picture -> editorial_split kpi_metrics: a metrics dashboard: headline metric cards; data.sections (Highlights/Risks/Asks) makes it an exec summary / QBR snapshot layer_stack: stacked layers where higher sits on, and depends on, lower linear_flow: ordered process stages read left to right (or inputs to process to outputs) maturity_staircase: ascending levels climbing to a higher state nested_magnitude: nested containment - each level contains the next org_structure: a reporting hierarchy / org tree position_map: items placed by two axes - named 2x2 cells or scatter positions pyramid_hierarchy: a triangle of stacked tiers, foundation to apex ramp_curve: a continuous rising wedge split into phases - effort or value accumulating over time section_divider: a section-break: big section number + title; blocks = agenda progress chips (emphasis=primary = current) segment_wheel: a wheel of equal segments around a center - peer categories in the round (composition, not flow) status_dashboard: initiatives/workstreams tracked by status, owner, progress strategic_fork: one origin splitting into two mutually exclusive paths, one recommended swimlane_flow: actor/function lanes by phases, task cells, handoffs across lanes swot: the four-quadrant strengths / weaknesses / opportunities / threats grid system_flow_map: architecture/system components: panels with internals (edges optional) or nodes wired by directed arrows takeaway_stack: a title plus a few supporting points, each with one line of detail (executive summary, key findings); optional closing ask timeline_roadmap: milestones/phases laid out along a time axis trend_chart: one or more series plotted over time value_chain: support bands over primary activity columns flowing into a goal arrowhead (data.support = the bands) visual_showcase: one dominant screenshot/image with numbered callouts pointing into it waterfall_bridge: a start value bridged to an end value by plus/minus contributions
Exact per-form data shapes: browse_catalog(type=schema, family=) — the generated,always-current JSON Schema + a worked example. (List-shaped forms take blocks: [{"label","sub","detail":[str],"emphasis"}]; structured forms take typed data.)
Escape modes: mode=code (caller-supplied python-pptx in sandbox, $0.05 — use for forms the menu cannot express: calendars, custom diagrams); mode=status (poll a job, free). Image-led asks (photo covers, full-bleed visuals): hero_statement + image_prompt (+$0.05) or image_src.
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | Python code defining build(prs). Canvas 13.33×7.5", coords in inches. Pre-imported: Presentation, Inches, Pt, Emu, RGBColor, MSO_ANCHOR, PP_ALIGN. Helpers: add_text_box(slide, left, top, w, h, text, font_size=12, bold=False, color=None), add_box(slide, left, top, w, h, fill_color=None, line_color=None, corner_radius=0.05), add_icon, add_image (src = path or https://); theme_color(name) → RGBColor. add_widget(slide, name, x, y, w, h, params=|content=, theme=THEME) draws board-grade SSG widgets/charts (cards, waterfall, gantt, funnel…) — names via `browse_catalog(type=widgets)`. Use font_size=, not size=; use fill_color=, not fill=. When chrome is supplied, use `build(prs, slide)` — chrome is pre-rendered. Helper signatures: `browse_catalog(type=helpers)`. | |
| data | No | family-specific payload — see the documented shapes | |
| date | No | date callout (per-form). | |
| form | No | the form menu pick (see description) — the routing field | |
| mode | No | Default: structured intent / brief. safe = validate-then-render in ONE call (renders + bills only if faithful; else $0 invalid report with the fix — recommended, no dry_run round-trip). code = python-pptx escape. status = poll. | |
| name | No | ||
| wait | No | AI-image slides block ~10-15s; `false` returns a job_id to poll, not block (mode=brief). | |
| brief | No | prose fallback / extra context for fills | |
| blocks | No | list: [{"label","sub","detail":[str],"emphasis","icon":lucide-name,"metric":{value,label}}] | |
| detail | No | Response verbosity. Default `compact`: status, form/variant, fidelity (verbatim|mixed|ai_completed), warnings[]/errors[] (only when present), urls, cost. `full` adds a debug object (engine internals, verify events, latency buckets). | |
| job_id | No | Previous job ID (for mode=status, or mode=code patching) | |
| metric | No | ||
| verify | No | mode=code tier. Default `lint`: static geometry linter (overlap/off-canvas/zero-size) + composer content validators — no LLM. `lint+vlm` adds a VLM second-look (~+3s) and makes a blank/contentless render a $0 error, not a billed warning. `off` skips checks. | |
| caution | No | one-line risk / caveat callout (per-form). | |
| context | No | one-line subtitle/standfirst | |
| dry_run | No | Free pre-commit check (intent or mode=code), cost:0, no PPTX: status + warnings/errors, plus fidelity_forecast (verbatim|mixed|ai_completed|would_reject) and which fields bind vs get authored. Fix errors, re-call with dry_run=false to render. | |
| imagery | No | Cover/section-divider imagery: photo (default — curated stock photo, half-bleed), wash (abstract color wash), off (typographic only). Content slides are never photo-decorated. | |
| logo_id | No | Optional brand logo (from upload_asset purpose=logo) drawn as chrome on content slides; covers/section breaks stay clean. | |
| styling | No | Topical design on default themes (default on; the note names it): designed cover + a subject palette (from imagery_tag, or the brief). clean = neutral. Pins never take it. | |
| subject | No | central entity for forms that have one — hub label, org root, section #, fork origin, media label (per-form). | |
| variant | No | pin a specific variant within the form (list them via browse_catalog). Unknown variant -> rejected ($0) with the valid list; set allow_variant_fallback to render the family default instead. | |
| headline | No | the assertion-style slide title | |
| language | No | Target language (default: en) | |
| takeaway | No | optional verdict band (per-form). Put the so-what in the headline; add only for a verdict the title can't carry — not every slide. | |
| theme_id | No | Optional theme id from browse_catalog(type=themes). Omit for Default (slideforge_standard). | |
| direction | No | rtl typesets AND mirrors the slide right-to-left (Arabic/Hebrew). Never inferred — pass it. | |
| highlight | No | one-line emphasis callout (per-form). | |
| image_src | No | https URL | asset:<id> for image-bearing forms | |
| imagery_tag | No | Subject/industry: steers cover/section photos AND the topical palette. Omit = general; `education` = teaching. | |
| min_font_pt | No | Binding type floor for prose (exhibit furniture has its own). Type grows to meet it; content that can't fit is a $0 min_font_not_met naming the size needed. Typical: 12. | |
| source_note | No | source / footnote line (per-form). | |
| force_render | No | On completed_with_errors, pptx_url is null (broken slide). Set true to get it anyway. No cost/status effect. | |
| image_prompt | No | generate an image when no image_src (+$0.05) | |
| replacements | No | String replacements on loaded code [{old, new}] (for mode=code with job_id) | |
| variant_policy | No | Routed-variant maturity policy: production_safe = if the ROUTED variant is draft/beta, render the family's demo-safe sibling instead (warning names both). Never overrides an explicit variant=. Default best_semantic_match. | |
| include_preview | No | Inline-preview PAYLOAD only (not execution). Default: default (768px). none omits the inline image and returns just the URLs — it does NOT change sync/async. Use `wait` to control execution. | |
| quality_profile | No | Thresholds layout.presentation_ready is judged against (executive strictest). Measurement only — never blocks a render or changes cost. | |
| allow_truncation | No | More items than the form holds blocks (it would drop your data); the response names the dropped count + a suggested_split. true renders the capacity subset (fidelity=verbatim_truncated). Default false. | |
| form_description | No | ||
| allow_fabrication | No | Brief mode only: a bare brief on a DATA form (kpi/funnel/comparison/…) returns would_fabricate at $0 rather than INVENT numbers. Send typed fields for verbatim, or true to let the brief author them (fidelity=ai_completed). Default false. | |
| allow_low_confidence | No | Brief routing only: by default a brief that doesn't match a form clearly returns status=needs_confirmation + candidates at cost:0 (no guessed render). Set true to render the top guess and bill it. Default false. | |
| allow_variant_fallback | No | If the pinned variant is unknown, render the form's default variant (with a warning) instead of rejecting. Default false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses cost and failure behavior in detail: $0 blocked/invalid renders, can_autofix patch merging, unchanged retries blocking, safe-mode billing only when faithful, mode=code and image-generation surcharges, and allow_truncation/force_render consequences. Since annotations only signal non-readonly/non-destructive behavior, all of this is highly additive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long, but the tool has 42 parameters and a large form menu, so the length is largely justified. It is well-structured with headings, a compact form menu, and front-loaded purpose; minor redundancy with schema-level mode/block descriptions prevents a 5.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the full decision space: form routing, per-form schema access, failure and billing behavior, escape modes, retry semantics, polling, and response verbosity controls. Despite there being no output schema, the description and detail parameter together give agents enough context to invoke and interpret the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 93%, so the baseline is 3, but the description adds genuinely valuable semantics: it defines every form menu option, explains list-shaped forms vs structured data payloads, and points to browse_catalog for exact per-form schemas. It also clarifies the tradeoffs between safe and brief modes beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The first sentence is explicit: 'Create one PowerPoint slide (.pptx, native, editable) from a structured intent in ONE call'. The large form menu and the safe/brief/code/status modes make the tool's scope unmistakable and distinguish it from deck-level or planning siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear routing guidance: use browse_catalog for schemas, use mode=code for forms the menu cannot express, use mode=status to poll, and use dry_run for a free pre-commit check. It does not explicitly contrast with create_deck or plan_slide, but the single-slide scope and form routing make the intended use clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_accountAccount & HistoryADestructiveInspect
SlideForge account for PowerPoint generation: balance, billing, job history, feedback, data controls. All free.
Actions: status (balance+plan), usage (spend breakdown), jobs (history), job (single job detail — slide jobs include quality_warnings[]; deck jobs add slides_completed/slides_failed/failed_slides[]), feedback (submit), feedback_list (read your reports back: status + resolution), onboarding (capabilities overview), topup (Stripe checkout link; wallet credits automatically), webhooks/webhook_add/webhook_remove/webhook_test (push endpoint instead of polling to terminal), download_url (fresh short-TTL PPTX link for an owned job — when a result carries no inline URL), security_status (retention + access-model + deletion posture), delete_job (irreversible: job + versions + files)
Action delete_asset irreversibly deletes a user-owned uploaded/generated image asset.
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | HTTPS endpoint to receive events (for action=webhook_add). Must be public HTTPS (private/loopback rejected). | |
| days | No | Lookback period (for action=usage, default 30) | |
| slug | No | Report slug (for action=reports — returns one report's full metadata; omit to list all). | |
| limit | No | Max rows (action=jobs default 10; action=feedback_list default 50, max 100) | |
| action | Yes | Operation (required). feedback → report a defect or request against a render; pass job_id so it is actionable, and ask the user before filing. feedback_list → read YOUR OWN filed reports back, with `status` and the `resolution` written when one was acted on: check it before working around a defect you reported earlier, because it may already be fixed. brand_report → the per-token fidelity report for one of your brand kits (pass theme_id). topup → mints a Stripe checkout link the user pays at directly (wallet credits automatically) — use when a render is refused for balance. reports → list report types; webhook_add registers a push endpoint instead of polling — see the url/events props. delete_job is irreversible. delete_asset is irreversible for user-owned image assets. | |
| amount | No | USD top-up amount (for action=topup, default 10, min 10, max 1000). Volume bonus: $50→+10%, $100→+15%, $200→+20%. | |
| detail | No | For action=status only: default false masks identity fields; true returns full email/user_id diagnostics for the authenticated user. | |
| events | No | Event types to subscribe to (for action=webhook_add; default all): job.completed, job.failed, deck.completed, deck.partial, deck.failed. | |
| job_id | No | Job ID (for action=job, action=download_url and action=delete_job) | |
| status | No | Filter — action=jobs: queued/generating/complete/failed; action=feedback_list: open/resolved | |
| message | No | What went wrong or what you want, in the user's own words (for action=feedback). | |
| asset_id | No | Image asset ID (for action=delete_asset). Logos are content-addressed/shared and are not deleted by this action. | |
| category | No | Feedback category (action=feedback to file under it, action=feedback_list to filter by it). The first nine are slide-quality categories — pair them with job_id. | |
| severity | No | For action=feedback: `bug` = it is broken, `quality` = it rendered but reads poorly, `suggestion` = a request. Defaults to suggestion, so file real defects explicitly or they are triaged as wishes. | |
| webhook_id | No | Webhook subscription id (for action=webhook_remove / webhook_test). | |
| include_preview | No | Preview (for action=job) | |
| include_children | No | For action=jobs: include deck child slides (each carries parent_deck_id) so a deck's slides are discoverable by listing. Default false (parents only). Deck rows roll child cost up to the deck. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes well beyond the annotations by disclosing irreversibility of delete_job and delete_asset, automatic wallet credit on topup, volume bonuses, the fact that logos are content-addressed/shared and not deleted, and the severity default to 'suggestion'. These are genuinely useful behavioral details.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but front-loaded with an action inventory before detailed explanations. Given 18 actions and 17 parameters, the length is largely justified. There is some redundancy where the action parameter description repeats parts of the initial inventory, but it remains scannable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers most actions and destructive semantics thoroughly, but the missing theme_id parameter for brand_report and the conflicting reports action description are real invocation hazards. Several actions such as onboarding, webhook_test, and security_status lack expected behavior or return detail, and with no output schema the description must carry more weight than it does.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3, but the description adds meaningful semantics: amount volume bonuses, detail masking identity fields, include_children cost roll-up, and severity defaulting. However, it loses a point because action=brand_report tells the agent to pass theme_id, yet theme_id is not present in the schema, and reports behavior is described inconsistently between the action summary and the slug parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence names the exact domain ('SlideForge account for PowerPoint generation: balance, billing, job history, feedback, data controls') and the action list enumerates the operations in detail. This clearly differentiates the tool from sibling tools like create_slide, create_deck, and upload_asset.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit selection guidance: use topup when a render is refused for balance, use webhooks instead of polling, use download_url when a result carries no inline URL, and check feedback_list before working around a previously reported defect. It also instructs the agent to ask the user before filing feedback.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
plan_slidePlan a Slide - Form + Variant CandidatesARead-onlyIdempotentInspect
Plan a PowerPoint slide before rendering (free): send a short brief, get ranked candidates + a separated verdict — route (which slide: selected|needs_confirmation|ambiguous), input (can it render: ready|extractable_from_brief|needs_structured_data) and next_action. Free (one embedding). Then call create_slide with the chosen form(+variant). route.confidence: calibrated = measured P(route correct) with label high/medium/low cut on it; retrieval_score/retrieval_margin = the raw family-aggregated classifier values (not probabilities; margin can be negative when families contest); source = classifier | structural_router (LLM-rescued). candidate_margin on the top candidate = literal gap between the two shown scores.
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | ||
| brief | Yes | ||
| escalate | No | Default true: on a low-confidence route the plan runs the SAME LLM rescue create_slide would (small COGS on that tail only), so plan and create always agree. Set false for a classifier-only, fully free plan (response then flags will_escalate + create_slide_behavior). | |
| variant_policy | No | production_safe: if the top routed variant is draft/beta, the family's demo-safe sibling leads and route reports both best_semantic and best_production_safe. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only, idempotent, non-destructive behavior, but the description adds substantial extra context: free one-embedding cost, escalation behavior, calibrated confidence semantics, negative margin meaning, and source distinction. This goes well beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, then covers detailed response semantics that are necessary because no output schema exists. It is dense but not padded; the parentheticals are efficient rather than wasteful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description thoroughly explains the returned verdict fields, confidence, retrieval scores, and next steps, compensating for the missing output schema. However, the 'top' parameter remains undocumented and the shape of the candidate ranking is only implied.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema documents escalate and variant_policy, but the description does not explain the 'top' parameter at all, and only vaguely references 'a short brief.' With only 50% schema description coverage, the missing 'top' semantics is a meaningful gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: plan a PowerPoint slide before rendering, returning ranked candidates plus a verdict. It explicitly hooks into create_slide for the actual creation step, which differentiates it from the sibling tool create_slide.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context: use this tool before rendering, it is free, and then call create_slide with the chosen form/variant. It does not exhaustively list when not to use the other siblings, but the workflow guidance is strong and unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
translate_deckTranslate PPTXAInspect
Translate a PowerPoint (.pptx) deck preserving all formatting. $0.02/slide. Supports 32 languages (Latin, Cyrillic, Greek scripts). Provide job_id (from a previous create_slide/create_deck), pptx_url, or pptx_base64.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Job name | |
| job_id | No | Source: previous slide/deck job ID (preferred — no file transfer needed) | |
| pptx_url | No | Source: HTTPS URL to .pptx | |
| pptx_base64 | No | Source: Base64-encoded .pptx (max ~10 MB) | |
| concise_mode | No | Prefer shorter translations for tight text boxes | |
| include_notes | No | Translate speaker notes (default false) | |
| include_tables | No | Translate table cells (default true) | |
| include_preview | No | Wait+embed preview (default=wait) | |
| source_language | No | Source language or 'auto' (default auto) | |
| target_language | Yes | Target language (required) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are all false and carry no operational meaning, so the description bears the burden. It adds non-obvious behavioral facts: the '$0.02/slide' cost, the formatting-preservation guarantee, and the 32-language/script scope. It does not disclose what is returned or whether a new job is created, which is the main gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences with no filler: purpose+guarantee, cost+language scope, and input routes. The most important information is front-loaded in the first clause, and every sentence adds a distinct fact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 10-parameter paid tool with no output schema, the description covers the critical invocation facts: purpose, cost, language scope, and the three mutually exclusive input methods. The notable omission is result semantics — what the agent receives after translation — which matters because there is no output schema to fill that gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so per baseline this is a 3. The description's one contribution — framing job_id/pptx_url/pptx_base64 as three alternative source routes — largely restates what the schema already says ('preferred — no file transfer needed'). No additional meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Opens with a specific verb+resource: 'Translate a PowerPoint (.pptx) deck'. The qualifier 'preserving all formatting' adds precision, and translation is clearly distinct from the sibling tools (create_slide/create_deck build decks, upload_asset uploads, plan_slide plans, browse_catalog browses). An agent can identify what this tool does instantly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Gives concrete usage context: the source must come from 'a previous create_slide/create_deck' job, an HTTPS URL, or base64 — with the workflow implication that translation happens after deck creation. It lacks an explicit when-not-to-use statement naming an alternative, hence not a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_assetUpload or Generate AssetAInspect
Upload assets for PowerPoint (.pptx) generation: company template, logo, image, or document — or AI-generate an image.
Purposes:
• logo — company logo for chrome (PNG/JPG/SVG, max 5MB) → logo_id
• image — image for the Image component (max 10MB) → asset_id
• theme — company template PPTX → theme_id; slides with it render NATIVELY on the template (masters/layouts/chrome)
• generate_image — AI-generate via prompt → asset_id ($0.05)
• translate — PPTX to translate → deck job_id ($0.02/slide; requires target_language)
• pdf — PDF → editable slides; pass target_language to also translate
• recreate — image OF a slide → editable PPTX slide ($0.10; honest annotate/preserve fallback, refusals free). Use image to just place a picture
Files >3MB (pdf/translate/theme) — and recreate on chat hosts — omit data: a drop-zone appears in the result card; bytes never pass through the agent.
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Base64-encoded file content. Required for logo/image/theme/translate. Optional for pdf — omit to get a drop-zone (recommended for files >3MB). | |
| size | No | Image dimensions for generate_image (default 1024×1024) | |
| model | No | Explicit gateway model ID. Overrides `quality`. | |
| prompt | No | Image description (required when purpose=generate_image) | |
| purpose | Yes | Asset type (required). brand = a .pptx/.potx corporate template imported as your brand kit (theme is the same thing under its old name). | |
| quality | No | draft = Flux Schnell. balanced (default) = Gemini Flash Image. premium = Imagen 4 Fast. Overridden by `model`. | |
| filename | No | Original filename (for type detection) | |
| position | No | Logo position: top-left / top-right / bottom-left / bottom-right | |
| theme_name | No | Name for extracted theme (purpose=theme) | |
| target_language | No | Required for purpose=translate. Optional for purpose=pdf — chains pdf→pptx→translate in one call. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only signal that this is not read-only, not idempotent, and not destructive. The description goes far beyond that by disclosing prices, native template rendering, the drop-zone fallback ('bytes never pass through the agent'), and the recreate fallback behavior with free refusals.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but extremely well-structured: a one-sentence summary followed by purpose bullets, each containing only unique facts (ID returned, cost, size limit, fallback behavior). There is no fluff or repeated information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
All eight purposes are explained with their required parameters, return IDs, costs, and edge-case handling. With no output schema, the description still prepares the agent for what each call yields (logo_id, asset_id, theme_id, deck job_id), making it complete enough to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although schema coverage is 100%, the description adds critical meaning not in the schema: size limits (logo 5MB, image 10MB), per-purpose costs, the effect of omitting data for pdf/translate/theme, and the brand/theme alias. This is exactly the kind of parameter context an agent needs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence states a specific verb ('Upload assets... or AI-generate an image') and resource ('assets for PowerPoint (.pptx) generation'), then breaks down eight distinct purposes. This makes it unmistakable that this tool is the asset-ingestion/generation entry point, and none of the sibling tools handle this scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The bullet list acts as a decision table: each purpose explains when to use it, what it returns, and any special requirements (e.g., target_language for translate). It also gives direct routing advice like 'Use image to just place a picture' for recreate, and recommends omitting data for files >3MB to trigger a drop-zone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v5.9.0- Changed
browse_catalog1 field changed- changed
Input schema / properties / type / descriptionPrevious value: -"Omit for the form overview (or family=/q= to drill in). schema (+family, optionally +variant=) = schema-first discovery: family only returns a compact variant chooser; family+variant returns that variant's exact machine-readable payload contract (JSON Schema for data, capacity limits, intent-field mapping, examples). widgets = the add_widget() catalog for mode=code (name=<widget> for its contract). helpers = python-pptx helper signatures. themes = list themes (built-in + your saved); Default appears first and can be omitted, or use any returned id as theme_id."New value: +"Omit for the form overview (or family=/q= to drill in). schema (+family, optionally +variant=) = schema-first discovery: family only returns a compact variant chooser; family+variant returns that variant's exact machine-readable payload contract (JSON Schema for data, capacity limits, intent-field mapping, examples). widgets = the add_widget() catalog for mode=code (name=<widget> for its contract). helpers = python-pptx helper signatures. themes = list themes (built-in + your saved); Default appears first and can be omitted, or use any returned id as theme_id. brands = your brand kits with versions (theme_id=<slug> renders the default version, <slug>@<n> pins n)."
- Changed
create_deck6 fields changed- changed
Input schema / properties / allow_partial / descriptionPrevious value: -"Non-regret default: if any slide fails, the deck is NOT billed (cost:0) and pptx withheld — the response carries repair_actions (assemble the completed children, free). Set true to render + bill the completed slides and get the partial deck. Default false."New value: +"IGNORED. A deck bills per rendered slide and always returns its pptx; slides that failed or rendered badly are free and named in repair_actions." - added
Input schema / properties / directionAdded value: +{ + "description": "Deck-level writing direction, inherited by every slide (a slide-level direction wins) — set it once for an Arabic/Hebrew deck. Covers/dividers rendered on an UPLOADED brand template keep that template's own layout direction. See create_slide.direction.", + "enum": [ + "ltr", + "rtl" + ], + "type": "string" +} - changed
Input schema / properties / force_render / descriptionPrevious value: -"If any slide is completed_with_errors, deck pptx_url is null. Set true to get it anyway; complete slides stay downloadable via their per-slide job_id either way. No cost/status effect."New value: +"IGNORED (deck-level). pptx_url is always returned when at least one slide rendered, so there is nothing to force. Still meaningful on create_slide." - added
Input schema / properties / imageryAdded value: +{ + "description": "Deck-level imagery mode, inherited by every slide (a slide-level imagery wins). See create_slide.imagery.", + "enum": [ + "photo", + "wash", + "off" + ], + "type": "string" +} - added
Input schema / properties / imagery_tagAdded value: +{ + "description": "Deck-level subject declaration, inherited by every slide (a slide-level imagery_tag wins). Declare it once for a whole deck. See create_slide.imagery_tag.", + "enum": [ + "general", + "agriculture", + "construction", + "education", + "energy", + "finance", + "government", + "healthcare", + "logistics", + "manufacturing", + "retail", + "technology", + "travel" + ], + "type": "string" +} - changed
Input schema / properties / language / enumPrevious value: -[ - "en", - "de", - "fr", - "es", - "it", - "pt", - "nl", - "pl" -]New value: +[ + "en", + "de", + "fr", + "es", + "it", + "pt", + "nl", + "pl", + "ru", + "uk" +]
- Changed
create_slide7 fields changed- changed
Input schema / properties / allow_fabrication / descriptionPrevious value: -"Brief mode only: by default a bare brief on a DATA form (kpi/funnel/comparison/…) returns status=would_fabricate at cost:0 rather than INVENT the numbers/entities. Supply the data as typed fields to render verbatim, or set true to let the brief author them (fidelity=ai_completed). Default false."New value: +"Brief mode only: a bare brief on a DATA form (kpi/funnel/comparison/…) returns would_fabricate at $0 rather than INVENT numbers. Send typed fields for verbatim, or true to let the brief author them (fidelity=ai_completed). Default false." - changed
Input schema / properties / allow_truncation / descriptionPrevious value: -"By default, supplying MORE items than a form holds is a blocking error (it would drop your data) — the response names the dropped count + a suggested_split. Set true to render the capacity subset anyway (fidelity=verbatim_truncated, never verbatim). Default false."New value: +"More items than the form holds blocks (it would drop your data); the response names the dropped count + a suggested_split. true renders the capacity subset (fidelity=verbatim_truncated). Default false." - added
Input schema / properties / directionAdded value: +{ + "description": "rtl typesets AND mirrors the slide right-to-left (Arabic/Hebrew). Never inferred — pass it.", + "enum": [ + "ltr", + "rtl" + ], + "type": "string" +} - changed
Input schema / properties / imagery_tag / descriptionPrevious value: -"Industry bucket for cover/section photos. Omit for the general pool."New value: +"Subject/industry: steers cover/section photos AND the topical palette. Omit = general; `education` = teaching." - changed
Input schema / properties / language / enumPrevious value: -[ - "en", - "de", - "fr", - "es", - "it", - "pt", - "nl", - "pl" -]New value: +[ + "en", + "de", + "fr", + "es", + "it", + "pt", + "nl", + "pl", + "ru", + "uk" +] - changed
Input schema / properties / min_font_pt / descriptionPrevious value: -"Binding type floor for prose (exhibit furniture has its own). Type grows to meet it; content that can't fit is a $0 min_font_not_met naming the size needed — allow_truncation renders the fitting subset. Typical: 12."New value: +"Binding type floor for prose (exhibit furniture has its own). Type grows to meet it; content that can't fit is a $0 min_font_not_met naming the size needed. Typical: 12." - changed
Input schema / properties / styling / descriptionPrevious value: -"Subject-informed palette + designed cover on default themes (on by default; the design note names the choice). clean = neutral look. Pinned themes never take it."New value: +"Topical design on default themes (default on; the note names it): designed cover + a subject palette (from imagery_tag, or the brief). clean = neutral. Pins never take it."
- Changed
manage_account9 fields changed- changed
Input schema / properties / action / descriptionPrevious value: -"Operation (required). reports → list report types; webhook_add registers a push endpoint instead of polling — see the url/events props. delete_job is irreversible. delete_asset is irreversible for user-owned image assets."New value: +"Operation (required). feedback → report a defect or request against a render; pass job_id so it is actionable, and ask the user before filing. feedback_list → read YOUR OWN filed reports back, with `status` and the `resolution` written when one was acted on: check it before working around a defect you reported earlier, because it may already be fixed. brand_report → the per-token fidelity report for one of your brand kits (pass theme_id). topup → mints a Stripe checkout link the user pays at directly (wallet credits automatically) — use when a render is refused for balance. reports → list report types; webhook_add registers a push endpoint instead of polling — see the url/events props. delete_job is irreversible. delete_asset is irreversible for user-owned image assets." - changed
Input schema / properties / action / enumPrevious value: -[ - "status", - "usage", - "jobs", - "job", - "download_url", - "feedback", - "onboarding", - "reports", - "webhooks", - "webhook_add", - "webhook_remove", - "webhook_test", - "security_status", - "delete_job", - "delete_asset" -]New value: +[ + "status", + "usage", + "jobs", + "job", + "download_url", + "feedback", + "feedback_list", + "onboarding", + "topup", + "brand_report", + "reports", + "webhooks", + "webhook_add", + "webhook_remove", + "webhook_test", + "security_status", + "delete_job", + "delete_asset" +] - added
Input schema / properties / amountAdded value: +{ + "description": "USD top-up amount (for action=topup, default 10, min 10, max 1000). Volume bonus: $50→+10%, $100→+15%, $200→+20%.", + "type": "number" +} - changed
Input schema / properties / category / descriptionPrevious value: -"Feedback category (for action=feedback): bug/feature_request/quality/general"New value: +"Feedback category (action=feedback to file under it, action=feedback_list to filter by it). The first nine are slide-quality categories — pair them with job_id." - added
Input schema / properties / category / enumAdded value: +[ + "layout", + "typography", + "contrast", + "content", + "icons", + "images", + "theme", + "chrome", + "consistency", + "bug", + "feature_request", + "testimonial", + "general", + "other" +] - changed
Input schema / properties / limit / descriptionPrevious value: -"Max jobs (for action=jobs, default 10)"New value: +"Max rows (action=jobs default 10; action=feedback_list default 50, max 100)" - changed
Input schema / properties / message / descriptionPrevious value: -"Feedback text (for action=feedback)"New value: +"What went wrong or what you want, in the user's own words (for action=feedback)." - added
Input schema / properties / severityAdded value: +{ + "description": "For action=feedback: `bug` = it is broken, `quality` = it rendered but reads poorly, `suggestion` = a request. Defaults to suggestion, so file real defects explicitly or they are triaged as wishes.", + "enum": [ + "bug", + "quality", + "suggestion" + ], + "type": "string" +} - changed
Input schema / properties / status / descriptionPrevious value: -"Filter (for action=jobs): queued/generating/complete/failed"New value: +"Filter — action=jobs: queued/generating/complete/failed; action=feedback_list: open/resolved"
- Changed
upload_asset2 fields changed- changed
Input schema / properties / purpose / descriptionPrevious value: -"Asset type (required)"New value: +"Asset type (required). brand = a .pptx/.potx corporate template imported as your brand kit (theme is the same thing under its old name)." - changed
Input schema / properties / purpose / enumPrevious value: -[ - "logo", - "image", - "theme", - "generate_image", - "translate", - "pdf" -]New value: +[ + "logo", + "image", + "theme", + "brand", + "generate_image", + "translate", + "pdf", + "recreate" +]
7 tool updates
v5.5.4- First observed
browse_catalog - First observed
create_deck - First observed
create_slide - First observed
manage_account - First observed
plan_slide - First observed
translate_deck - First observed
upload_asset
TDQS
Each tool has a clearly distinct role: catalog exploration, slide planning, single-slide rendering, deck rendering, translation, asset upload, and account management. There is no meaningful overlap that would mislead an agent into picking the wrong tool.
All tool names follow the same verb_noun snake_case pattern: browse_catalog, plan_slide, create_slide, create_deck, translate_deck, upload_asset, manage_account. The naming is uniform and predictable.
Seven tools is well-scoped for a PowerPoint generation server. Each tool covers a necessary and distinct part of the workflow without redundancy or bloat.
The surface covers the full creation lifecycle: planning, single-slide generation, multi-slide decks, translation, asset ingestion, and account/job management. Minor gaps like no dedicated asset-listing tool or in-place deck editing exist, but agents can work around them via manage_account and browse_catalog.
Maintenance
Related MCP Connectors
Presentations.AI MCP server — create designed slide decks from a topic, text, or document.
A paid remote MCP for ppt-master, built to return verdicts, receipts, usage logs, and audit-ready JS
Public remote MCP server for Walnai AI Consulting services, pricing, calculator, FAQs, and adoption.
Generate, edit, merge, translate and PDF-convert PowerPoint (.pptx) over MCP. 8 tools.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceRemote MCP server running on Cloudflare Workers that creates PowerPoint presentations with customizable slides, layouts, and bullet points, along with basic calculator functions.-
- FlicenseNot gradedqualityAmaintenanceMCP server for generating slides from natural language, with interactive preview and export to PDF, PPTX, and Markdown.19-
- AlicenseNot gradedqualityCmaintenanceCross-platform MCP server for Microsoft PowerPoint automation, enabling slide management, template remapping, and real-time evaluation via natural language.MIT
- AlicenseAqualityBmaintenanceMCP server for AI-driven document creation, enabling generation of PowerPoint decks with consistent design themes and auto-generated images via ComfyUI.5GPL 3.0
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/smartdatabrokers/slideforge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server