{
  "info": {
    "name": "Google Slides — mcp.ai",
    "description": "REST API for the Google Slides 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/googleslides",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "googleslides_create_slides_markdown",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/slides/markdown",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "slides",
            "markdown"
          ]
        },
        "description": "Creates a new google slides presentation from markdown text. automatically splits content into slides using '---' separators and applies appropriate templates based on content structure.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"markdown_text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googleslides_presentations_batch_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/presentations/batch/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "presentations",
            "batch",
            "update"
          ]
        },
        "description": "Tool to update existing google slides presentations with either raw api requests or markdown content. **two operation modes:** 1. **raw api mode**: provide direct slides api requests for precise contr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"requests\": \"\",\n  \"writeControl\": {},\n  \"markdown_text\": \"\",\n  \"presentationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googleslides_presentations_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/presentations/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "presentations",
            "create"
          ]
        },
        "description": "Tool to create a blank or duplicate presentation. use when you need to initialize a presentation with a specific title or duplicate an existing one.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"presentationId\": \"\",\n  \"duplicatePresentationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googleslides_presentations_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/presentations/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "presentations",
            "get"
          ]
        },
        "description": "Tool to retrieve the latest version of a presentation. use after obtaining the presentation id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"presentationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googleslides_presentations_pages_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/presentations/pages/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "presentations",
            "pages",
            "get"
          ]
        },
        "description": "Tool to get the latest version of a specific page in a presentation. use when you need to inspect slide, layout, master, or notes page details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageObjectId\": \"\",\n  \"presentationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "googleslides_presentations_pages_get_thumbnail",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/presentations/pages/get/thumbnail",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "presentations",
            "pages",
            "get",
            "thumbnail"
          ]
        },
        "description": "Tool to generate and return a thumbnail image url for a specific page. use when you need a quick preview of a slide page after loading it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pageObjectId\": \"\",\n  \"presentationId\": \"\",\n  \"thumbnailProperties.mimeType\": \"\",\n  \"thumbnailProperties.thumbnailSize\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}