scrape_domain
Extract data from a specified domain by scraping up to a defined number of pages. Enables SEO analysis, keyword research, and SERP data collection via FetchSERP MCP Server.
Instructions
Scrape a domain
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | The domain to scrape | |
max_pages | No | The maximum number of pages to scrape (up to 200). Default: 10 |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"description": "The domain to scrape",
"type": "string"
},
"max_pages": {
"default": 10,
"description": "The maximum number of pages to scrape (up to 200). Default: 10",
"maximum": 200,
"type": "integer"
}
},
"required": [
"domain"
],
"type": "object"
}