ReviewWebsite MCP Server

MIT License
27
2

convert_multiple_to_markdown

Convert multiple URLs into Markdown format using AI through the ReviewWebsite API. Specify URLs, adjust settings like model and delay, and manage large-scale content conversions efficiently.

Instructions

Convert multiple URLs to Markdown 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
maxLinksNoMaximum number of URLs to process
modelNoAI model to use for conversion
urlsYesList of URLs to convert to Markdown

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" }, "maxLinks": { "description": "Maximum number of URLs to process", "type": "number" }, "model": { "description": "AI model to use for conversion", "type": "string" }, "urls": { "description": "List of URLs to convert to Markdown", "items": { "type": "string" }, "type": "array" } }, "required": [ "urls" ], "type": "object" }
ID: hww6ztx29c