Get many adventure pages at once
imagine_get_adventure_pagesBatch read of adventure pages by id (up to 50 per call). Use this when you need to walk an act and read several scenes' bodies — one call instead of one tool invocation per page. Each returned page carries the same shape imagine_get_adventure_page produces (full markdown body, ancestors, prev/next sibling navigation, expanded shortcodes by default). The response is { pages: [...], missing: [...] }; ids the caller can't view, or that don't exist, land silently in missing rather than failing the whole batch.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Mongo `_id` list of adventure pages to fetch. Returns each page's full body, ancestors, and prev/next-sibling navigation in one round trip. Cap: 50 ids per request. Pages the caller can't view are silently omitted into a separate `missing` list rather than failing the batch. | |
| raw | No | When true, return each page body verbatim with bracketed shortcodes left as literals. Default: shortcodes are dereferenced and a compact <expansion> block is inlined after each literal, same as imagine_get_adventure_page. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||