Agent-readable docs index: /llms.txt. Full docs in one file: /llms-full.txt. Download /docs.zip to grep all markdown files locally.
getCMSItemsTOOL
Gets items from a specific CMS collection, with optional text search filtering.
Returns items with their IDs, slugs, draft status, and field data. Field data contains the actual content for each field defined in the collection.
If no filters are provided, returns all items in the collection. When filters are used, only matching items are returned based on text search.
Pagination: Use skip and limit to paginate through large collections.
read-only
Parameters
collectionId *string
The ID of the CMS collection to get items from
skip?number
Number of items to skip for pagination (default: 0)
limit?number
Maximum number of items to return (default: 100)
filter?object
Optional filters to search/filter items instead of getting all
Show properties
query?string
Search query to match against slugs and text fields
fieldName?string
Specific field name to search within
Request example
{ "method": "tools/call", "params": { "name": "getCMSItems", "arguments": { "collectionId": "string", "skip": 0, "limit": 0, "filter": { "query": "string", "fieldName": "string" } } } }