ReviewWebsite MCP Server

MIT License
27
2

extract_data

Extract structured data from any URL using AI. Input a URL, specify extraction instructions, and define a JSON template to organize the results. Intended for web data extraction and analysis.

Instructions

Extract structured data from a URL using AI via ReviewWebsite API.

Input Schema

NameRequiredDescriptionDefault
api_keyNoYour ReviewWebsite API key
debugNoEnable debug mode for detailed logging
delayAfterLoadNoOptional delay after page load in milliseconds
instructionsYesInstructions for the AI on what data to extract
jsonTemplateYesJSON template for structuring the extracted data
modelNoAI model to use for extraction
recursiveNoIf true, recursively scrape all internal URLs and extract data from each
systemPromptNoOptional system prompt to guide the AI
urlYesThe URL to extract data from

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "api_key": { "description": "Your ReviewWebsite API key", "type": "string" }, "debug": { "description": "Enable debug mode for detailed logging", "type": "boolean" }, "delayAfterLoad": { "description": "Optional delay after page load in milliseconds", "type": "number" }, "instructions": { "description": "Instructions for the AI on what data to extract", "type": "string" }, "jsonTemplate": { "description": "JSON template for structuring the extracted data", "type": "string" }, "model": { "description": "AI model to use for extraction", "type": "string" }, "recursive": { "description": "If true, recursively scrape all internal URLs and extract data from each", "type": "boolean" }, "systemPrompt": { "description": "Optional system prompt to guide the AI", "type": "string" }, "url": { "description": "The URL to extract data from", "type": "string" } }, "required": [ "url", "instructions", "jsonTemplate" ], "type": "object" }
ID: hww6ztx29c