MCP Server Fetch TypeScript
by tatn
get_markdown_summary
Extracts and converts the main content area of a web page to Markdown format, automatically removing navigation menus, headers, footers, and other peripheral content. Perfect for capturing the core content of articles, blog posts, or documentation pages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL of the web page whose main content should be extracted and converted to Markdown. |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL of the web page whose main content should be extracted and converted to Markdown.",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}