Search

Slidura MCP Server

Slidura exposes its full functionality as an MCP server at https://app.slidura.com/mcp. Any MCP-compatible client — Claude Desktop, a PydanticAI agent, your own pipeline — can discover templates, read annotated catalogs, create and edit builds, upload content, and download finished decks.

Endpoint

https://app.slidura.com/mcp

Transport: streamable HTTP (official mcp SDK).
Authentication: API key as a Bearer token.
Mint a key: app.slidura.com/settings/api-keys.

The full tool suite

The MCP server currently exposes 42 tools across the complete workflow:

Discovery and catalog

Build lifecycle

Ref search

Content creation

Account

create_build(catalog_id, fill_json?)
   update_build_fill(build_id, fill_json)   # iterate as needed
   start_build(build_id)                    # spends one credit
   poll get_build_status until "completed"
   get_build_result  signed download URL

Use search_refs at any point to find stored assets; drop @chart:id, @image:id, @art:id, etc. directly into fill values.

Download the agent skill

Every template workspace has a downloadable agent skill — a ready-made Claude Code skill file with your catalog pre-wired. Open the template, go to the Overview tab, and download it. Drop it into your .claude/skills/ folder and your agent already knows the fill contract for that template.

Connect in one paste

Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "slidura": {
      "url": "https://app.slidura.com/mcp",
      "headers": {
        "Authorization": "Bearer slidura_live_..."
      }
    }
  }
}

Restart Claude Desktop and the full Slidura tool suite appears.

Full instructions: Connect Claude Desktop →.

Scoped API keys

Each key carries coarse per-route scopes: read, write, delete, build. Mint a read-only key for catalog discovery; add build only for agents that submit builds. Revoke any key at any time from /settings/api-keys.

Why MCP-first

Slidura’s split is deliberate: the mechanical work — scanning and filling .pptx — runs server-side; the intelligent work — deciding what content goes in each field — runs on your machine, with your model, under your control. MCP is the cleanest protocol for that boundary.

Slidura is in private beta. Request beta access to get an API key and start building.

Tool reference → · Reference agent → · Signed download URLs →