get_markdown_summary
Extracts and converts the main content of a web page into Markdown format, removing headers, footers, and navigation menus. Ideal for capturing essential content from articles, blogs, or documentation.
Instructions
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"
}