{
  "info": {
    "name": "CaptureKit — mcp.ai",
    "description": "REST API for the CaptureKit 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/capturekit",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "capturekit_analyze_webpage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/analyze/webpage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "analyze",
            "webpage"
          ]
        },
        "description": "Analyze a webpage with AI to identify its summary, value proposition, features, categories, use cases, audience, and optional custom fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"custom_fields\": {},\n  \"custom_prompt\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "capturekit_capture_webpage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/capture/webpage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "capture",
            "webpage"
          ]
        },
        "description": "Capture a webpage as an image or PDF and return a downloadable file reference.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"delay\": 0,\n  \"device\": \"\",\n  \"format\": \"\",\n  \"selector\": \"\",\n  \"full_page\": false,\n  \"remove_ads\": false,\n  \"wait_until\": \"\",\n  \"viewport_width\": 0,\n  \"viewport_height\": 0,\n  \"remove_selectors\": \"\",\n  \"wait_for_selector\": \"\",\n  \"remove_cookie_banners\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "capturekit_extract_webpage_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/extract/webpage/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "extract",
            "webpage",
            "content"
          ]
        },
        "description": "Extract webpage metadata and links, optionally including rendered HTML, Markdown, sitemap data, or cleaned main content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"delay\": 0,\n  \"remove_ads\": false,\n  \"wait_until\": \"\",\n  \"include_html\": false,\n  \"use_defuddle\": false,\n  \"include_sitemap\": false,\n  \"include_markdown\": false,\n  \"remove_selectors\": \"\",\n  \"wait_for_selector\": \"\",\n  \"remove_cookie_banners\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "capturekit_fetch_page_html",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/page/html",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "page",
            "html"
          ]
        },
        "description": "Fetch a webpage's raw HTML without browser rendering for fast scraping, audits, or monitoring.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"allow_redirects\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "capturekit_get_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "usage"
          ]
        },
        "description": "Return the connected workspace's current CaptureKit allowance, usage, API-key status, quotas, and effective rate limits.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}