{
  "info": {
    "name": "Screenshot.fyi — mcp.ai",
    "description": "REST API for the Screenshot.fyi 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/screenshot_fyi",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "screenshot_fyi_take_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/take/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "take",
            "screenshot"
          ]
        },
        "description": "Tool to capture a webpage screenshot. Use after specifying the target URL and options. JavaScript-heavy pages may capture before full render; ensure the page is fully loaded prior to capture.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"format\": \"\",\n  \"dark_mode\": false,\n  \"full_page\": false,\n  \"viewport_width\": 0,\n  \"viewport_height\": 0,\n  \"disable_cookie_banners\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}