MCP JinaAI Reader Server

by spences10
Verified

read_url

Convert any URL to LLM-friendly text using Jina.ai Reader

Input Schema

NameRequiredDescriptionDefault
formatNoResponse format (json or stream)json
no_cacheNoBypass cache for fresh results
remove_selectorNoCSS selector to exclude specific elements
target_selectorNoCSS selector to focus on specific elements
timeoutNoMaximum time in seconds to wait for webpage load
urlYesURL to process
wait_for_selectorNoCSS selector to wait for specific elements
with_generated_altNoAdd alt text to images lacking captions
with_iframeNoInclude iframe content in response
with_images_summaryNoGather all images at the end of response
with_links_summaryNoGather all links at the end of response

Input Schema (JSON Schema)

{ "properties": { "format": { "default": "json", "description": "Response format (json or stream)", "enum": [ "json", "stream" ], "type": "string" }, "no_cache": { "default": false, "description": "Bypass cache for fresh results", "type": "boolean" }, "remove_selector": { "description": "CSS selector to exclude specific elements", "type": "string" }, "target_selector": { "description": "CSS selector to focus on specific elements", "type": "string" }, "timeout": { "description": "Maximum time in seconds to wait for webpage load", "type": "number" }, "url": { "description": "URL to process", "type": "string" }, "wait_for_selector": { "description": "CSS selector to wait for specific elements", "type": "string" }, "with_generated_alt": { "description": "Add alt text to images lacking captions", "type": "boolean" }, "with_iframe": { "description": "Include iframe content in response", "type": "boolean" }, "with_images_summary": { "description": "Gather all images at the end of response", "type": "boolean" }, "with_links_summary": { "description": "Gather all links at the end of response", "type": "boolean" } }, "required": [ "url" ], "type": "object" }

You must be authenticated.

Other Tools