Skip to main content
Glama

Create Multi-Slide Deck

create_deck

Create a complete PowerPoint deck in one call: multi-slide, native, editable .pptx with cover, section dividers, and closing.

Instructions

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=).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoDefault render. assemble/fork are free deck plumbing.
nameNo
titleNoDeck title (PowerPoint metadata)
slidesNoeach item is a create_slide intent (same form menu, typed fields, and data shapes as create_slide).
deck_idNoExisting deck ID (for mode=fork, or mode=render to update)
dry_runNoDeck-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.
imageryNoDeck-level imagery mode, inherited by every slide (a slide-level imagery wins). See create_slide.imagery.
job_idsNoSlide job IDs to merge (for mode=assemble)
logo_idNoOptional brand logo (from upload_asset purpose=logo) applied as chrome to every content slide in the deck.
stylingNoDeck-level topical-design switch, inherited by every slide (a slide-level styling wins). See create_slide.styling.
languageNoTarget language
theme_idNo
directionNoDeck-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_tagNoDeck-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_renderNoIGNORED (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_partialNoIGNORED. 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_policyNoOptional CI-style gate for automated report pipelines. dry_run returns policy_result; render returns rejected/cost:0 if the policy fails.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed6 schema fields changedv5.9.0
    • changedInput schema / properties / allow_partial / description
      Previous 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."
    • addedInput schema / properties / direction
      Added 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"
      +}
    • changedInput schema / properties / force_render / description
      Previous 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."
    • addedInput schema / properties / imagery
      Added 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"
      +}
    • addedInput schema / properties / imagery_tag
      Added 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"
      +}
    • changedInput schema / properties / language / enum
      Previous value: -[
      -  "en",
      -  "de",
      -  "fr",
      -  "es",
      -  "it",
      -  "pt",
      -  "nl",
      -  "pl"
      -]New value: +[
      +  "en",
      +  "de",
      +  "fr",
      +  "es",
      +  "it",
      +  "pt",
      +  "nl",
      +  "pl",
      +  "ru",
      +  "uk"
      +]
  2. First observedv5.5.4

TDQS

A4.5/5.0
Behavior5/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Latest Blog Posts

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