ReviewWebsite MCP Server

MIT License
27
2

summarize_website

Generate concise summaries of websites, including multiple pages, using AI. Customize instructions, model, and format (bullet points or paragraph) for tailored results via ReviewWebsite API.

Instructions

Summarize a website (multiple pages) 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
formatNoFormat of the summary (bullet points or paragraph)
instructionsNoCustom instructions for the AI on how to summarize the content
maxLengthNoMaximum length of the summary in words
maxLinksNoMaximum number of pages to process
modelNoAI model to use for summarization
systemPromptNoCustom system prompt to guide the AI
urlYesThe main URL of the website 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": "Enable debug mode for detailed logging", "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 the summary in words", "type": "number" }, "maxLinks": { "description": "Maximum number of pages 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" }, "url": { "description": "The main URL of the website to summarize", "type": "string" } }, "required": [ "url" ], "type": "object" }
ID: hww6ztx29c