relentless_index
Get a fast index of all database entries with slugs and titles for navigation or sitemap generation without retrieving full content.
Instructions
Get an index of all entries (slugs and titles only). This is faster than relentless_list when you only need to see what entries exist without their full content. Useful for navigation or sitemap generation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database | Yes | The database name (e.g., "blog", "docs", "leads") | |
| format | No | Return format: "array" returns [{slug, title, url}], "object" returns {slug: {title, url}} | array |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "The database name (e.g., \"blog\", \"docs\", \"leads\")",
"type": "string"
},
"format": {
"default": "array",
"description": "Return format: \"array\" returns [{slug, title, url}], \"object\" returns {slug: {title, url}}",
"enum": [
"array",
"object"
],
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}