# MagicSlides [Health: Active]

**Category:** 🧠 Knowledge & Memory  
**Repository:** https://github.com/IndianAppGuy/magicslides-mcp  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/magicslides-2

## Description
Create presentations, docs, sheets and meeting notes from chat. Hosted link, editor, PPTX & PDF.

## Tools
Capabilities this server exposes over MCP:

- **create_presentation** — Build a designed deck from a topic, outline, or content
- **create_presentation_from_slots** — Build a deck into a bring-your-own template's slots
- **update_presentation** — Edit an existing deck
- **get_presentation** — Fetch a deck's current content
- **list_templates** — List available deck designs
- **get_template_schema** — Inspect a BYO template's slots before filling it
- **create_doc** — Create a rich document
- **update_doc** — Edit or read a document
- **create_sheet** — Create a spreadsheet from rows or structured data
- **update_sheet** — Edit or read a spreadsheet
- **create_meeting_notes** — Turn a transcript into summary, decisions and action items
- **create_frames** — Build short animated video frames from a template
- **create_custom_frame** — Build a bespoke animated frame
- **list_frame_templates** — List available frame designs
- **whoami** — Show the signed-in MagicSlides account

## Claude Desktop Quick Installation
Remote MCP endpoint (confidence: high). Install path detected from listing signals. Add as a URL/SSE server in your client:

```json
"mcpServers": {
  "magicslides": {
    "url": "https://www.magicslides.app"
  }
}
```

## Documentation & README

# MagicSlides MCP

Create presentations, documents, spreadsheets and meeting notes from a chat — with a hosted share
link, an editor, and PPTX/PDF export.

MagicSlides is a remote MCP server. There is no package to install and no API key to paste: you add
the server, sign in with your MagicSlides account, and your AI assistant can start building decks,
docs and sheets for you.

- **Website:** https://www.magicslides.app
- **Install / docs:** https://www.magicslides.app/mcp
- **MCP endpoint:** `https://www.magicslides.app/api/mcp/mcp`
- **Transport:** Streamable HTTP
- **Auth:** OAuth 2.0 (dynamic client registration supported)
- **Official MCP Registry:** `io.github.theindianappguy/magicslides-mcp`

---

## Install

### Claude Desktop / Claude.ai

One click from https://www.magicslides.app/mcp — it downloads a `.mcpb` bundle you double-click to
install. Nothing to edit.

### Cursor

Add to your MCP settings:

```json
{
  "mcpServers": {
    "magicslides": {
      "url": "https://www.magicslides.app/api/mcp/mcp"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "magicslides": {
      "type": "http",
      "url": "https://www.magicslides.app/api/mcp/mcp"
    }
  }
}
```

### Any MCP client

Point it at `https://www.magicslides.app/api/mcp/mcp` over streamable HTTP. The server advertises
OAuth via `/.well-known/oauth-protected-resource`, so compliant clients will walk you through
sign-in automatically.

---

## Tools

| Tool | What it does |
|---|---|
| `create_presentation` | Build a designed deck from a topic, outline, or content |
| `create_presentation_from_slots` | Build a deck into a bring-your-own template's slots |
| `update_presentation` | Edit an existing deck |
| `get_presentation` | Fetch a deck's current content |
| `list_templates` | List available deck designs |
| `get_template_schema` | Inspect a BYO template's slots before filling it |
| `create_doc` | Create a rich document |
| `update_doc` / `get_doc` | Edit or read a document |
| `create_sheet` | Create a spreadsheet from rows or structured data |
| `update_sheet` / `get_sheet` | Edit or read a spreadsheet |
| `create_meeting_notes` | Turn a transcript into summary, decisions and action items |
| `create_frames` | Build short animated video frames from a template |
| `create_custom_frame` | Build a bespoke animated frame |
| `list_frame_templates` | List available frame designs |
| `whoami` | Show the signed-in MagicSlides account |

Every artifact comes back as a hosted share link plus an editor URL, so you can keep working on it
after the conversation ends. Presentations also export to PPTX and PDF.

---

## Example prompts

- "Make a 12-slide deck on our Q3 results and send me the link."
- "Turn this transcript into meeting notes with action items."
- "Build a spreadsheet from this data and give me an editable link."
- "Use our brand template and fill it with this outline."

---

## Support

- Support: https://www.magicslides.app/support
- Privacy policy: https://www.magicslides.app/privacy-policy
- Terms: https://www.magicslides.app/terms-of-use

## License

MIT — see [LICENSE](https://github.com/IndianAppGuy/magicslides-mcp/blob/HEAD/LICENSE). This repository contains documentation and registry metadata for the
hosted MagicSlides MCP server.

