get_related_pages
Find linked pages from any Grokipedia article to discover related content and expand your research with relevant connections.
Instructions
Get pages that are linked from the specified page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Unique slug identifier of page to find related pages for | |
| limit | No | Maximum number of related pages to return (default: 10) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of related pages to return (default: 10)",
"maximum": 50,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"slug": {
"description": "Unique slug identifier of page to find related pages for",
"title": "Slug",
"type": "string"
}
},
"required": [
"slug"
],
"type": "object"
}