data
Prismic MCP, CLI, and Lua Integration for AI Agents
Prismic integration docs for AI agents: MCP gateway setup, Prismic CLI commands, Lua API reference, credentials, and function schemas.Prismic for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
prismic.prismic_list_documents | Read read | 6 | Search and list documents from the Prismic repository. Supports filtering with Prismic query predicates, pagination, ordering, and language selection. |
prismic.prismic_get_document | Read read | 3 | Retrieve a single document from the Prismic repository by its unique document ID. |
prismic.prismic_list_types | Read read | 2 | List all custom types defined in the Prismic repository. Returns type IDs and names that can be used for document queries. |
prismic.prismic_get_tags | Read read | 0 | List all tags defined in the Prismic repository. Tags can be used to filter documents in search queries. |
prismic.prismic_list_refs | Read read | 0 | List all refs (releases and drafts) for the Prismic repository. The master ref points to the published content; other refs point to drafts or releases in progress. |
prismic.prismic_list_languages | Read read | 0 | List all languages configured in the Prismic repository. Returns language codes and names that can be used for querying content in specific locales. |
prismic.prismic_get_current_user | Read read | 0 | Verify the Prismic API connection is working by performing a minimal document search. Returns connection status and repository information. |