get_sitemap_tree
Fetch and parse the sitemap tree of any website by providing its homepage URL. Retrieve structured sitemap data and optionally include detailed page information.
Instructions
Fetch and parse the sitemap tree from a website URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_pages | No | Whether to include page details in the response | |
url | Yes | The URL of the website homepage (e.g., https://example.com) |
Input Schema (JSON Schema)
{
"properties": {
"include_pages": {
"default": false,
"description": "Whether to include page details in the response",
"title": "Include Pages",
"type": "boolean"
},
"url": {
"description": "The URL of the website homepage (e.g., https://example.com)",
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "get_sitemap_treeArguments",
"type": "object"
}