# Agility CMS — MCP server on mcp.ai > Connect your Agility CMS account and use 9 tools for website builders straight from your AI agent. Connect with your own API key. Agility CMS is a headless content management system that allows developers to build and manage digital experiences across various platforms. By: mcp.ai · official Page: https://mcp.ai/agility_cms ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_agility_cms?ms=1787291220000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/agility_cms/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/agility_cms/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/agility_cms/skill.md Postman collection (v2.1): https://mcp.ai/agility_cms/postman.json ## Tools - agility_cms_get_api_types() — Tool to retrieve all enum types used throughout the Agility CMS Management API. Use when you need to understand available values for status codes, types, permissions, and other enumerated fields. - agility_cms_get_content_item(guid?: string, locale?: string, apiType?: string, content_id: integer, content_link_depth?: integer, expand_all_content_links?: boolean) — Tool to fetch details of a content item by Content ID. Use when you need item fields and metadata from Agility CMS. - agility_cms_get_content_list(guid: string, skip?: integer, sort?: string, take?: integer, fields?: string, filter?: string, locale: string, apiType?: string, direction?: string, referenceName: string, contentLinkDepth?: integer, expandAllContentLinks?: boolean) — Retrieves a paginated list of content items by reference name from Agility CMS. Use this action to: - Fetch multiple content items of a specific type (e.g., blog posts, products, authors) - Retrieve c - agility_cms_get_content_models(guid?: string, apiType?: string, lastModifiedDate?: string) — Tool to retrieve content models and page modules. Use when you need schema definitions to dynamically build content structures. - agility_cms_get_logs(guid?: string, locale?: string, pageSize?: integer, syncToken: string) — Retrieve sync items (content change logs) from Agility CMS using the Content Sync API. This tool implements incremental content synchronization: - Use syncToken='0' for initial full sync (retrieves al - agility_cms_get_page(locale?: string, page_id: integer, content_link_depth?: integer, expand_all_content_links?: boolean) — Tool to retrieve details of a Page, including metadata, content zones, and components. Use after you know the page_id to fetch. - agility_cms_get_page_modules(guid?: string, locale?: string, apiType?: string, lastModifiedDate?: string) — Retrieves page module definitions from Agility CMS. Page modules are UI components that can be added to pages. This action fetches all model definitions and filters to return only page modules (defini - agility_cms_get_sitemap_flat(guid: string, locale: string, apiType?: string, channelName: string) — Retrieves the flat sitemap for a specific channel and locale in Agility CMS. Returns a dictionary mapping page paths to sitemap items containing page metadata, SEO info, and routing details. Use this - agility_cms_sync_pages(locale: string, pageSize?: integer, syncToken: integer) — Retrieves all page items from Agility CMS in paged format with sync tokens for incremental updates. Use this to synchronize local page data with the CMS. Start with syncToken=0 for initial sync, then ## Example prompts - "What can I do in Agility CMS?" - "Show me a summary of my Agility CMS account" ## Links Docs: https://mcp.ai/docs/mcps/agility_cms Website: https://mcp.ai/mcps/agility_cms