Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

deckrun-mcp MCP server](https://glama.ai/mcp/servers/agenticdecks/deckrun-mcp/badges/score.svg)](https://glama.ai/mcp/servers/agenticdecks/deckrun-mcp) 🐍 ☁️ - Generate presentation PDFs, narrated videos, and MP3 audio from Markdown.

README.md

Deckrun MCP Server

![PyPI](https://pypi.org/project/deckrun-mcp/) ![awesome-mcp-servers](https://github.com/punkpeye/awesome-mcp-servers)

Note: The hosted Deckrun endpoints (free.agenticdecks.com, deckrun-mcp-free.agenticdecks.com, api.agenticdecks.com) are provisioned per engagement β€” see Access & Availability. The pip install deckrun-mcp package and local-execution paths documented below work immediately against your own deployment. For hosted access, open an Access Request β€” we respond within one business day.

MCP server for Deckrun by Agentic Decks β€” generate presentation PDFs, narrated videos, and audio from Markdown. Built for AI agents and IDEs.

Deckrun is a document execution engine: your AI writes the content, Deckrun renders it into pixel-perfect branded PDFs, narrated MP4 videos, and MP3 audio β€” from a single Markdown source. No slide editor, no video tool, no audio studio.

Install: pip install deckrun-mcp

---

Quickstart β€” no install needed

The HTTP transport is hosted and ready. Add one JSON snippet to your IDE.

VS Code (GitHub Copilot Chat β€” v1.99+)

.vscode/mcp.json in your project (this file is included in the repo):

{
  "servers": {
    "deckrun": {
      "type": "http",
      "url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Cursor

.cursor/mcp.json in your project:

{
  "mcpServers": {
    "deckrun": {
      "url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Google Antigravity (Gemini CLI)

~/.gemini/antigravity/mcp_config.json:

{
  "mcpServers": {
    "deckrun": {
      "serverUrl": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

Claude Code (terminal)

~/.claude/settings.json:

{
  "mcpServers": {
    "deckrun": {
      "type": "http",
      "url": "https://deckrun-mcp-free.agenticdecks.com/mcp/"
    }
  }
}

---

Stdio install (Claude Desktop and other stdio-only clients)

pip install deckrun-mcp

Claude Desktop β€” ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "deckrun": {
      "command": "python",
      "args": ["/path/to/deckrun_mcp.py"]
    }
  }
}

Paid tier β€” add the API key:

{
  "mcpServers": {
    "deckrun": {
      "command": "python",
      "args": ["/path/to/deckrun_mcp.py"],
      "env": { "DECKRUN_API_KEY": "dk_live_..." }
    }
  }
}

Get your API key at agenticdecks.com after subscribing.

---

Tools

Free tier (no key required)

| Tool | Description | |------|-------------| | get_slide_format | Fetch the live slide format spec β€” layout tags, syntax rules, example Markdown | | generate_slide_deck | Convert Deckrun Markdown β†’ PDF. Returns a public URL (90-day expiry) |

Paid tier (DECKRUN_API_KEY set)

All free tools plus:

| Tool | Description | |------|-------------| | generate_video | Markdown β†’ narrated MP4 (async, returns job_id) | | generate_audio | Slide notes β†’ MP3 narration (async, returns job_id) | | check_job | Poll async job status until complete or failed | | get_account | Plan name, render units used/remaining, active add-ons | | validate_markdown | Lint Deckrun Markdown and get a pre-flight RU estimate | | list_themes | List available slide/document themes (system + custom) | | list_voices | List available narration voices β€” id, name, tier, language |

---

Example prompt

Once configured, ask your AI:

"Create a 6-slide deck on the future of edge computing"

The AI will call get_slide_format to learn the syntax, write the Markdown, call generate_slide_deck, and reply with a clickable PDF link.

---

HTTP endpoints

| Tier | MCP endpoint | |------|-------------| | Free | https://deckrun-mcp-free.agenticdecks.com/mcp/ | | Paid | https://deckrun-mcp.agenticdecks.com/mcp/ |

Discovery: GET <endpoint> returns server metadata as JSON.

---

Links

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.