Update app.py
Browse files
app.py
CHANGED
@@ -336,6 +336,9 @@ def Fetch_Webpage( # <-- MCP tool #1 (Fetch)
|
|
336 |
include_links: Include outbound links discovered in the readable section.
|
337 |
max_chars: Hard cap for body characters after the verbosity preset. Use 0 to disable the cap.
|
338 |
max_links: Maximum number of links to include from the readable content. Set 0 to omit links.
|
|
|
|
|
|
|
339 |
|
340 |
Returns:
|
341 |
str: Markdown that may contain the following sections:
|
|
|
336 |
include_links: Include outbound links discovered in the readable section.
|
337 |
max_chars: Hard cap for body characters after the verbosity preset. Use 0 to disable the cap.
|
338 |
max_links: Maximum number of links to include from the readable content. Set 0 to omit links.
|
339 |
+
full_page_markdown: If True, return the page converted to full Markdown (Content Scraper mode)
|
340 |
+
instead of the compact summary. This ignores verbosity/include_* and max_* limits and
|
341 |
+
attempts to convert the main content area to Markdown with headings preserved.
|
342 |
|
343 |
Returns:
|
344 |
str: Markdown that may contain the following sections:
|