MCP Tavily

by kshern
Verified

extract

Extract and process content from a list of URLs. Can handle up to 20 URLs at once.

Input Schema

NameRequiredDescriptionDefault
optionsNoContent extraction configuration options, all fields are optional
urlsYesList of URLs to extract content from (max 20). e.g.: ['https://example.com', 'https://test.com']

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "options": { "additionalProperties": false, "description": "Content extraction configuration options, all fields are optional", "properties": { "extractDepth": { "description": "Extraction depth: basic (simple extraction) or advanced (detailed extraction)", "enum": [ "basic", "advanced" ], "type": "string" }, "includeImages": { "description": "Include images in extraction: true or false", "type": "boolean" } }, "type": "object" }, "urls": { "description": "List of URLs to extract content from (max 20). e.g.: ['https://example.com', 'https://test.com']", "items": { "type": "string" }, "type": "array" } }, "required": [ "urls" ], "type": "object" }

You must be authenticated.

Other Tools