ReviewWebsite MCP Server

MIT License
27
2

summarize_multiple_urls

Summarize content from multiple URLs with AI, customizing instructions, format, and length. Ideal for quick insights from web pages using ReviewWebsite API.

Instructions

Summarize 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
formatNoFormat of the summary (bullet points or paragraph)
instructionsNoCustom instructions for the AI on how to summarize the content
maxLengthNoMaximum length of each summary in words
maxLinksNoMaximum number of URLs to process
modelNoAI model to use for summarization
systemPromptNoCustom system prompt to guide the AI
urlsYesList of URLs to summarize

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" }, "format": { "description": "Format of the summary (bullet points or paragraph)", "enum": [ "bullet", "paragraph" ], "type": "string" }, "instructions": { "description": "Custom instructions for the AI on how to summarize the content", "type": "string" }, "maxLength": { "description": "Maximum length of each summary in words", "type": "number" }, "maxLinks": { "description": "Maximum number of URLs to process", "type": "number" }, "model": { "description": "AI model to use for summarization", "type": "string" }, "systemPrompt": { "description": "Custom system prompt to guide the AI", "type": "string" }, "urls": { "description": "List of URLs to summarize", "items": { "type": "string" }, "type": "array" } }, "required": [ "urls" ], "type": "object" }
ID: hww6ztx29c