{
  "info": {
    "name": "MagicSlides — mcp.ai",
    "description": "REST API for the MagicSlides MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/magicslides",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "magicslides_generate_presentation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/presentation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "presentation"
          ]
        },
        "description": "Create an editable MagicSlides presentation from a topic or source content and return its editor URL. Calling this tool is documented to cost $0.50 per deck. Successful paid generation was not live-ve",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"topic\": \"\",\n  \"slides\": 0,\n  \"language\": \"\",\n  \"web_search\": false,\n  \"include_images\": false,\n  \"presentation_for\": \"\",\n  \"presentation_tone\": \"\",\n  \"presentation_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "magicslides_generate_presentation_with_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/presentation/with/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "presentation",
            "with",
            "template"
          ]
        },
        "description": "Create a presentation from a topic and a selected ProSlides template, returning HTML slides plus preview, PPTX, and PDF URLs. MagicSlides documents this operation at $0.50 per generated deck. Successf",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"topic\": \"\",\n  \"slides\": 0,\n  \"language\": \"\",\n  \"template_key\": \"\",\n  \"presentation_for\": \"\",\n  \"presentation_tone\": \"\",\n  \"presentation_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "magicslides_list_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "models"
          ]
        },
        "description": "List the AI model IDs accepted by MagicSlides HTML Studio, including the provider's default and model quality and speed guidance.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "magicslides_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "List MagicSlides presentation templates and their valid template keys, optionally restricted to ProSlides HTML-output templates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}