{
  "info": {
    "name": "Contentful Graphql — mcp.ai",
    "description": "REST API for the Contentful Graphql 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/contentful_graphql",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "contentful_graphql_get_cma_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cma/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cma",
            "token"
          ]
        },
        "description": "Tool to retrieve a Contentful Management API (CMA) access token. Use when making CMA calls to ensure valid authorization.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "contentful_graphql_graph_ql_content_api_persisted_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/graph/ql/content/api/persisted/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "graph",
            "ql",
            "content",
            "api",
            "persisted",
            "query"
          ]
        },
        "description": "Execute a GraphQL query using Automatic Persisted Queries (APQ). APQ reduces bandwidth by sending only a SHA256 hash instead of the full query text after initial registration. Workflow: 1. First reque",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"version\": 0,\n  \"space_id\": \"\",\n  \"variables\": {},\n  \"sha256_hash\": \"\",\n  \"access_token\": \"\",\n  \"environment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}