ReviewWebsite MCP Server

MIT License
27
2

extract_data_multiple

Extract structured data from multiple web URLs using AI, guided by instructions and a JSON template. Automates data collection for analysis or integration via the ReviewWebsite API.

Instructions

Extract structured data from multiple URLs using AI via ReviewWebsite API.

Input Schema

NameRequiredDescriptionDefault
api_keyNoYour ReviewWebsite API key
debugNoWhether to enable debug mode
delayAfterLoadNoOptional delay after page load in milliseconds
instructionsYesInstructions for the AI to extract data from the websites
jsonTemplateYesJSON schema template for the extracted data output
modelNoAI model to use for extraction
systemPromptNoSystem prompt for the AI
urlsYesList of URLs 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": "Whether to enable debug mode", "type": "boolean" }, "delayAfterLoad": { "description": "Optional delay after page load in milliseconds", "type": "number" }, "instructions": { "description": "Instructions for the AI to extract data from the websites", "type": "string" }, "jsonTemplate": { "description": "JSON schema template for the extracted data output", "type": "string" }, "model": { "description": "AI model to use for extraction", "type": "string" }, "systemPrompt": { "description": "System prompt for the AI", "type": "string" }, "urls": { "description": "List of URLs to extract data from", "items": { "type": "string" }, "type": "array" } }, "required": [ "urls", "instructions", "jsonTemplate" ], "type": "object" }
ID: hww6ztx29c