Conversation
Two new optional parameters extend the `web_fetch` tool to support
navigating large documentation pages without fetching everything at
once.
`list_sections` returns a compact XML listing of every headed section on
the page. Each entry includes the section's anchor ID, heading level,
title, and a short content preview. Five heading-ID resolution patterns
are supported: `id` on the heading itself, `id` on a parent element, a
permalink child anchor, a child element with `id`, and a preceding
sibling anchor.
`sections` accepts a list of anchor IDs returned by `list_sections` and
returns only the HTML content under those headings, converted to
Markdown. This significantly reduces output size when only specific
parts of a page are needed.
Typical workflow:
```json
{"url": "https://docs.rs/tokio/latest/tokio/", "list_sections": true}
{"url": "https://docs.rs/tokio/latest/tokio/", "sections": ["modules", "macros"]}
```
The tool definition in `.jp/mcp/tools/web/fetch.toml` is updated to
expose both parameters with descriptions and examples.
Signed-off-by: Jean Mertz <git@jeanmertz.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two new optional parameters extend the
web_fetchtool to support navigating large documentation pages without fetching everything at once.list_sectionsreturns a compact XML listing of every headed section on the page. Each entry includes the section's anchor ID, heading level, title, and a short content preview. Five heading-ID resolution patterns are supported:idon the heading itself,idon a parent element, a permalink child anchor, a child element withid, and a preceding sibling anchor.sectionsaccepts a list of anchor IDs returned bylist_sectionsand returns only the HTML content under those headings, converted to Markdown. This significantly reduces output size when only specific parts of a page are needed.Typical workflow:
{"url": "https://docs.rs/tokio/latest/tokio/", "list_sections": true} {"url": "https://docs.rs/tokio/latest/tokio/", "sections": ["modules", "macros"]}The tool definition in
.jp/mcp/tools/web/fetch.tomlis updated to expose both parameters with descriptions and examples.