sync_content
Performs incremental content synchronization using the Content Sync API. Pass syncToken "0" for an initial full sync. The returned syncToken should be stored and used for subsequent calls to fetch only changed content. Supports syncing both content items and pages.
list_containers
Lists all content containers in the Agility CMS instance. Containers hold content lists and define how content models are used. Requires OAuth authentication.
list_content_models
Lists all content models or page modules defined in the Agility CMS instance. Content models define the schema for content items; page modules define reusable page components. Requires OAuth authentication.
list_content
Retrieves a list of content items by their model reference name from the Content Fetch API. Supports pagination, sorting, filtering, and field selection. Use filter expressions like `fields.title[eq]"Hello"` or `fields.date[gt]"2024-01-01"`.
manage_page
Creates, updates, deletes, publishes, or unpublishes a page via the Management API. Combines all page lifecycle operations into one tool. Requires OAuth authentication.
get_page
Retrieves a page by its ID from the Content Fetch API, including all content zones, modules, and page properties.
list_users
Lists all users in the Agility CMS instance. Returns user details including roles and permissions. Requires OAuth authentication.
execute_graphql
Executes a GraphQL query against the Agility CMS GraphQL API. The schema is auto-generated from your content models. Supports flexible field selection, filtering, and sorting. Currently only supports content queries (not pages or templates).
get_locales
Retrieves all available locales configured for the Agility CMS instance. Useful for understanding which languages are supported before fetching content. Requires OAuth authentication.
manage_content_item
Creates, updates, or deletes a content item via the Management API. For creating or updating, provide the content fields and reference name. For deleting, provide the contentId and set the operation to "delete". Requires OAuth authentication.
get_content_history
Retrieves the version history and comments for a content item via the Management API. Returns a chronological list of changes and associated comments. Requires OAuth authentication.
get_content_item
Retrieves a single content item by its ID from the Agility CMS Content Fetch API. Returns the full content item including all fields, properties (state, version, dates), and SEO metadata. Use **preview** mode to see unpublished/staging content.
list_assets
Lists media assets from the Agility CMS asset library. Supports search, pagination, and gallery filtering. Requires OAuth authentication.
get_sitemap
Retrieves the sitemap for a given channel from the Content Fetch API. Choose **flat** format (dictionary keyed by page path, ideal for routing) or **nested** format (hierarchical array, ideal for navigation menus).
manage_folder
Creates, deletes, or renames a folder in the Agility CMS asset library. Requires OAuth authentication.
manage_content_model
Creates, updates, retrieves, or deletes a content model (schema) in Agility CMS. Models define the structure and fields for content items. Requires OAuth authentication.
content_workflow
Performs workflow operations on content items: **publish**, **unpublish**, **request-approval**, **approve**, or **decline**. Supports both individual items and batch operations on multiple items at once. Requires OAuth authentication.
manage_asset
Deletes or moves a media asset in the Agility CMS asset library. Use "delete" to permanently remove an asset or "move" to relocate it to a different folder. Requires OAuth authentication.