{
  "info": {
    "name": "MrScraper — mcp.ai",
    "description": "REST API for the MrScraper 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/mrscraper",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "mrscraper_bulk_rerun_ai_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/rerun/ai/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "rerun",
            "ai",
            "scraper"
          ]
        },
        "description": "Run an existing General AI scraper configuration against multiple URLs in one request. Returns the accepted bulk result ID for Get Scrape Result.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urls\": \"\",\n  \"scraper_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_bulk_rerun_manual_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/rerun/manual/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "rerun",
            "manual",
            "scraper"
          ]
        },
        "description": "Run an existing saved manual scraper workflow against multiple URLs in one request. Returns the accepted bulk result ID for Get Scrape Result.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"urls\": \"\",\n  \"scraper_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_create_ai_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/ai/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "ai",
            "scraper"
          ]
        },
        "description": "Create and run a general, listing, or map AI scraper against a website.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"agent\": \"\",\n  \"limit\": 0,\n  \"message\": \"\",\n  \"max_depth\": 0,\n  \"max_pages\": 0,\n  \"proxy_country\": \"\",\n  \"exclude_patterns\": \"\",\n  \"include_patterns\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_get_account_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "usage"
          ]
        },
        "description": "Return the connected MrScraper account's plan, token usage, concurrency allowance, and rate limits without exposing user identity or token details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_get_analytic_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/analytic/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "analytic",
            "statuses"
          ]
        },
        "description": "Return aggregate scrape counts, success rate, request rate, latency, and status totals for a domain and action over a time range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"domain\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"api_token_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_get_analytic_timeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/analytic/timeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "analytic",
            "timeline"
          ]
        },
        "description": "Return time-series scrape activity and success metrics for a domain and action over a time range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"domain\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"api_token_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_get_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "result"
          ]
        },
        "description": "Retrieve the current status and output for one accessible scrape result by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"result_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_heal_manual_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/heal/manual/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "heal",
            "manual",
            "scraper"
          ]
        },
        "description": "Ask MrScraper to repair an existing manual scraper workflow that no longer matches its target site.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"scraper_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_list_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "results"
          ]
        },
        "description": "List scrape results for the connected account with filtering, sorting, and agent-controlled pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_at\": \"\",\n  \"search\": \"\",\n  \"start_at\": \"\",\n  \"page_size\": 0,\n  \"sort_field\": \"\",\n  \"sort_order\": \"\",\n  \"next_cursor\": \"\",\n  \"date_range_column\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_rerun_ai_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rerun/ai/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rerun",
            "ai",
            "scraper"
          ]
        },
        "description": "Run an existing AI scraper configuration against a new URL, with optional map crawl controls.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"limit\": 0,\n  \"max_depth\": 0,\n  \"max_pages\": 0,\n  \"scraper_id\": \"\",\n  \"exclude_patterns\": \"\",\n  \"include_patterns\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mrscraper_rerun_manual_scraper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rerun/manual/scraper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rerun",
            "manual",
            "scraper"
          ]
        },
        "description": "Run an existing saved manual scraper workflow against a new URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"scraper_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}