MCP Server Fetch TypeScript

by tatn

get_raw_text

Retrieves raw text content directly from a URL without browser rendering. Ideal for structured data formats like JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to the source content is needed without processing dynamic elements.

Input Schema

NameRequiredDescriptionDefault
urlYesURL of the target resource containing raw text content (JSON, XML, CSV, TSV, plain text, etc.).

Input Schema (JSON Schema)

{ "properties": { "url": { "description": "URL of the target resource containing raw text content (JSON, XML, CSV, TSV, plain text, etc.).", "type": "string" } }, "required": [ "url" ], "type": "object" }