get_doc_content
Extract specific content from MSFS SDK documentation pages by providing the URL and optional section name, enabling structured access to detailed SDK information.
Instructions
Get detailed content from a specific MSFS SDK documentation page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
section | No | Specific section to extract (e.g., "overview", "examples", "api-reference") | |
url | Yes | URL of the documentation page to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"section": {
"description": "Specific section to extract (e.g., \"overview\", \"examples\", \"api-reference\")",
"type": "string"
},
"url": {
"description": "URL of the documentation page to retrieve",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}