MCP Server Fetch TypeScript

by tatn

get_markdown

Converts web page content to well-formatted Markdown, preserving structural elements like tables and definition lists. Recommended as the default tool for web content extraction when a clean, readable text format is needed while maintaining document structure.

Input Schema

NameRequiredDescriptionDefault
urlYesURL of the web page to convert to Markdown format, supporting various HTML elements and structures.

Input Schema (JSON Schema)

{ "properties": { "url": { "description": "URL of the web page to convert to Markdown format, supporting various HTML elements and structures.", "type": "string" } }, "required": [ "url" ], "type": "object" }