Skip to main content
ClaudeWave

MCP server for consulting-quality PowerPoint slides. Remote — no install required.

MCP ServersRegistry oficial4 estrellas0 forksPythonMITActualizado today
ClaudeWave Trust Score
74/100
· OK
Passed
  • Open-source license (MIT)
  • Recently active
  • Clear description
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: pip / Python · slideforge-mcp
Claude Code CLI
claude mcp add slideforge-mcp -- python -m slideforge-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "slideforge-mcp": {
      "command": "python",
      "args": ["-m", "slideforge-mcp"],
      "env": {
        "SLIDEFORGE_API_KEY": "<slideforge_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Install first: pip install slideforge-mcp
Detected environment variables
SLIDEFORGE_API_KEY
Casos de uso

Resumen de MCP Servers

<!-- mcp-name: dev.slideforge/slideforge -->
mcp-name: dev.slideforge/slideforge

# SlideForge MCP — PowerPoint slides for AI agents

> **SlideForge ([slideforge.dev](https://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](https://slideforge.dev), 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.

[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
[![Smithery](https://img.shields.io/badge/Smithery-%40smartdatabrokers%2Fslideforge-blue)](https://smithery.ai/server/@smartdatabrokers/slideforge)
[![Website](https://img.shields.io/badge/Website-slideforge.dev-orange)](https://slideforge.dev)
[![Docs](https://img.shields.io/badge/Docs-slideforge.dev%2Fdocs-lightgrey)](https://slideforge.dev/docs)

---

## ⚠️ Disambiguation

"SlideForge" is used by multiple unrelated projects. **This is SlideForge by Smart Data Brokers GmbH at [slideforge.dev](https://slideforge.dev).** Not affiliated with:

- `slideforge.io` — a separate AI presentation generator
- `slideforge.fr` — a French document polishing service
- `blink.new/p/slideforge-app` — an unrelated web app
- Other `github.com/*/SlideForge` repositories outside the `smartdatabrokers` org

When citing or linking, prefer `slideforge.dev` or "SlideForge by Smart Data Brokers."

---

## Why SlideForge

- **A compiler, not a generator.** A slide is a typed intent: pick a `form` from 150+ 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`, or `ai_completed`? A `partial` grade means some supplied content didn't make it onto the slide — the manifest names what was dropped; never deliver a `partial` render 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=code` runs your own python-pptx in a sandbox (widget/chart toolkit, theme injected, intent fields render as chrome). Code renders are linted, measured (`layout` block + `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_run` validates any payload + forecasts fidelity at $0 — or use `mode=safe` to validate-then-render in ONE call (renders + bills only if faithful; else a $0 report with the fix). `verify` tiers on code renders (`lint` default, `lint+vlm` adds 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](https://slideforge.dev/pricing)

---

## Quick Start

### Claude Code

```bash
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-mcp
```

Or copy any folder from [`skills/`](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)

```json
{
  "mcpServers": {
    "slideforge": {
      "url": "https://api.slideforge.dev/mcp/",
      "transport": "streamable-http",
      "headers": { "Authorization": "Bearer sf_live_YOUR_KEY" }
    }
  }
}
```

Get a key: [slideforge.dev](https://slideforge.dev) → Console → API keys. (Codex CLI and other AGENTS.md-native tools: see [`AGENTS.md`](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.

```bash
pip install slideforge-mcp        # or: uv pip install slideforge-mcp
export SLIDEFORGE_API_KEY=sf_live_YOUR_KEY
slideforge-mcp                    # speaks MCP over stdio
```

Or via Docker:

```bash
docker build -t slideforge-mcp .
docker run -i -e SLIDEFORGE_API_KEY=sf_live_YOUR_KEY slideforge-mcp
```

Client config (stdio):

```json
{
  "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.

### REST (no MCP)

```bash
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](https://slideforge.dev/docs/api)

---

## The 7 MCP tools

| Tool | What it does | Cost |
|---|---|---|
| `create_slide` | ONE slide from a structured intent (form + typed fields) or a brief; `mode=safe` validates-then-renders in one call; `mode=code` for sandboxed python-pptx (verify tiers, chrome fields, patch-by-replacements). Routing controls: `variant`, `variant_policy`, `allow_fabrication`/`allow_truncation`/`allow_low_confidence` (honest defaults: reject at $0 rather than guess). `min_font_pt` sets a BINDING type floor — text grows to meet it where the box allows; content that cannot fit returns a $0 `min_font_not_met` error naming the size it needs. Response carries the fidelity manifest + a measured `layout` readiness block on diagram forms. Default themes ship **topical design** — a subject-informed palette + designed cover, named in the response's design note (`styling: "clean"` opts out; your pinned/uploaded brand theme always wins). | $0.05 (usable-or-free) |
| `create_deck` | Whole deck: `slides[]` of intents (code-mode slides are first-class children), parallel render, one merged .pptx, per-slide fidelity rollup + per-slide child jobs (own preview/pptx). Failed slides isolated + free; deck-level `dry_run` validates the whole deck at $0. | N × $0.05 |
| `plan_slide` | Brief → top form/variant candidates with confidence. | Free |
| `browse_catalog` | 150+ patterns with per-form JSON Schemas + copy-pasteable example intents, themes, the code-mode widget toolkit. Pass an uploaded `theme_id` to list its branded cover/agenda/divider layouts. 9 built-in themes + your uploaded brand themes. | Free |
| `translate_deck` | Translate any PPTX preserving formatting (32 languages). | $0.02/slide |
| `upload_asset` | Logos, theme PPTX, images; `purpose=pdf` extracts a PDF into editable slide intents; or AI-generate an image. Theme upload (`purpose=theme`, base64 `data`) renders NATIVE by default — decks are built on the client's own template file. Omit `data` on large files for an in-card drag/drop zone. | Free / $0.01/page / $0.05/image |
| `manage_account` | 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](https://slideforge.dev/docs/api/inspect)

---

## 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-url` mints a short-TTL,
  single-use, revocable link.
- Artifacts auto-delete 30 days after creation.
- Every download is audit-logged.
- `manage_account(action=security_status)` discl
agent-skillsai-agentsclaudeclaude-codemcpmcp-serverpowerpointpptxpresentations

Lo que la gente pregunta sobre slideforge-mcp

¿Qué es smartdatabrokers/slideforge-mcp?

+

smartdatabrokers/slideforge-mcp es mcp servers para el ecosistema de Claude AI. MCP server for consulting-quality PowerPoint slides. Remote — no install required. Tiene 4 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala slideforge-mcp?

+

Puedes instalar slideforge-mcp clonando el repositorio (https://github.com/smartdatabrokers/slideforge-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar smartdatabrokers/slideforge-mcp?

+

Nuestro agente de seguridad ha analizado smartdatabrokers/slideforge-mcp y le ha asignado un Trust Score de 74/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene smartdatabrokers/slideforge-mcp?

+

smartdatabrokers/slideforge-mcp es mantenido por smartdatabrokers. La última actividad registrada en GitHub es de today, con 1 issues abiertos.

¿Hay alternativas a slideforge-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega slideforge-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: smartdatabrokers/slideforge-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/smartdatabrokers-slideforge-mcp)](https://claudewave.com/repo/smartdatabrokers-slideforge-mcp)
<a href="https://claudewave.com/repo/smartdatabrokers-slideforge-mcp"><img src="https://claudewave.com/api/badge/smartdatabrokers-slideforge-mcp" alt="Featured on ClaudeWave: smartdatabrokers/slideforge-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a slideforge-mcp