{
  "info": {
    "name": "Gamma — mcp.ai",
    "description": "REST API for the Gamma 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/gamma",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gamma_create_from_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/from/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "from",
            "template"
          ]
        },
        "description": "Tool to create new Gamma content based on an existing template. Use when you need to generate content with a predefined structure/layout by providing custom instructions and prompt. The API creates co",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"prompt\": \"\",\n  \"gammaId\": \"\",\n  \"themeId\": \"\",\n  \"exportAs\": \"\",\n  \"folderIds\": \"\",\n  \"imageOptions\": {},\n  \"sharingOptions\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gamma_generate_gamma",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/gamma",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "gamma"
          ]
        },
        "description": "Generate a Gamma presentation, document, webpage, or social media content using AI. Documentation: https://developers.gamma.app/docs/generate-api-parameters-explained The API creates content asynchron",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"format\": \"\",\n  \"themeId\": \"\",\n  \"exportAs\": \"\",\n  \"numCards\": 0,\n  \"textMode\": \"\",\n  \"cardSplit\": \"\",\n  \"folderIds\": \"\",\n  \"inputText\": \"\",\n  \"cardOptions\": {},\n  \"textOptions\": {},\n  \"imageOptions\": {},\n  \"sharingOptions\": {},\n  \"additionalInstructions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gamma_get_gamma_file_urls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/gamma/file/urls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "gamma",
            "file",
            "urls"
          ]
        },
        "description": "Retrieve generation status and file URLs. Poll this endpoint every ~5 seconds until status is 'completed'. Docs: https://developers.gamma.app/reference/get-generation-status",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"generation_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gamma_list_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folders"
          ]
        },
        "description": "Tool to retrieve a paginated list of folders in your Gamma workspace. Use when you need folder IDs to organize generated content or to search for specific folders by name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gamma_list_themes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/themes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "themes"
          ]
        },
        "description": "Fetch the list of themes available in your workspace. Returns both standard (global) and custom (workspace-specific) themes in a paginated format. Use this to discover available theme IDs and names fo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}