elmapicms-mcp-server
OfficialThis server provides tools to manage ElmapiCMS projects via MCP, including:
Project: Get info, manage locales (add, set default).
Collections: List, get, create (with initial fields), update, reorder.
Fields: Create, update, reorder fields with various types (text, number, richtext, boolean, date, media, relation, select, group, etc.).
Content entries: Extensive control — list with advanced filtering (13 operators, OR groups, relations), sorting, and pagination; get, create, update (full/partial), publish, unpublish, discard drafts, soft-delete, bulk operations (create, update, delete), link translations, and version history management (list, get, revert, update labels).
Assets: List, get, upload (single/bulk), update metadata, delete.
Webhooks: Full CRUD and delivery log access.
Resources: Consult guides on field types, collections, and query syntax.
ElmapiCMS MCP Server
An MCP (Model Context Protocol) server that connects AI agents like Cursor and Claude Code to your ElmapiCMS instance. Manage collections, fields, content entries, assets, and webhooks programmatically through natural language.
Configuration
Variable | Description |
| Instance API root (e.g. |
| Project Sanctum token from Project settings → API Tokens |
| Project UUID from the project home page or Project settings → API Access |
Related MCP server: SitecoreMCP
Usage with Cursor
Add this to your Cursor MCP settings (~/.cursor/mcp.json):
{
"mcpServers": {
"elmapicms": {
"command": "npx",
"args": ["-y", "@elmapicms/mcp-server"],
"env": {
"ELMAPI_BASE_URL": "https://your-domain.com/api",
"ELMAPI_API_KEY": "your-project-api-token",
"ELMAPI_PROJECT_ID": "your-project-uuid"
}
}
}
}Usage with Claude Code
claude mcp add elmapicms \
-e ELMAPI_BASE_URL=https://your-domain.com/api \
-e ELMAPI_API_KEY=your-project-api-token \
-e ELMAPI_PROJECT_ID=your-project-uuid \
-- npx -y @elmapicms/mcp-serverLocal Development (Laravel Herd / .test domains)
If your instance uses a self-signed certificate (e.g. Laravel Herd), you may need:
"env": {
"ELMAPI_BASE_URL": "https://myproject.test/api",
"ELMAPI_API_KEY": "your-project-api-token",
"ELMAPI_PROJECT_ID": "your-project-uuid",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
}Prefer fixing local CA trust (e.g. node --use-system-ca) over disabling TLS verification in production configs.
Available Tools (40)
Project
get_project— Get project information (default_locale,locales, etc.)add_project_locale— Add a locale code to the project (requires admin)set_default_project_locale— Set the default locale (requires admin)
Removing locales is intentionally not exposed here (use Project settings → Localization in the dashboard, or the REST/SDK APIs).
Collections
list_collections— List all collectionsget_collection— Get a collection with its full field schemacreate_collection— Create a collection (with optional batch field creation)update_collection— Update a collection's name and slugreorder_collections— Reorder collections
Fields
create_field— Add a field to a collectionupdate_field— Update a fieldreorder_fields— Reorder fields within a collection
Content Entries
list_entries— List entries with advanced filtering (wherewith 13 operators, OR groups, relation filtering), sorting, pagination, count, and firstget_entry— Get a single content entrycreate_entry— Create a content entryupdate_entry— Update a content entrypatch_entry— Partially update an entry (HTTP PATCH; merge only the fields you send)publish_entry— Publish the draft as a new immutable version (update)unpublish_entry— Clear the live published pointer; versions retained (update)discard_entry_draft— Discard unpublished draft changes (update)delete_entry— Soft-delete a content entry (moves to trash)bulk_create_entries— Create multiple entries atomicallybulk_update_entries— Update multiple entries atomically by UUIDbulk_delete_entries— Delete multiple entries atomically by UUIDlink_entry_translation— Link two entries (different locales) into the same translation group (POST …/link-translation; requires update)list_entry_versions— List version history for an entryget_entry_version— Fetch one version by number (includes snapshot payload)revert_entry_version— Restore draft from a prior snapshot and publish (update)update_entry_version_label— Edit label/description on a version; snapshot unchanged (update)
Content API shape: Each entry has uuid, locale, published_at, and fields (custom field values). Field names are kebab-case. Richtext write format follows editor.mode: HTML string or { html, json } for lexical; markdown string when mode is markdown. MCP create_field / create_collection (and richtext update_field) default omitted editor.mode to markdown. Pass mode: 'lexical' for Lexical. Never write markdown into a lexical field. Read shape follows editor.outputFormat. Relation fields return nested entry objects (or arrays for one-to-many) on read; on write send only the related entry’s UUID or numeric id (never the full nested object from a previous get_entry). get_entry supports translation_locale, exclude, timestamps, and state query parameters.
Save ≠ publish: create_entry / update_entry / patch_entry save the draft only. state=published list/get keep serving the last snapshot until you call publish_entry.
Asset URLs: The API returns url, thumbnail_url, and original_url as stable links (optional ?variant=thumbnail or ?variant=original).
Assets
list_assets— List assets with paginationget_asset— Get an asset by UUID or filenameupload_asset— Upload a file as an assetbulk_upload_assets— Upload multiple files atomicallybulk_update_asset_metadata— Update metadata for multiple assets atomicallydelete_asset— Delete an asset
Webhooks
list_webhooks— List all webhooks for the projectget_webhook— Get a webhook by UUIDcreate_webhook— Create a webhook for content and auth events (name,url,events,sources; optionaldescription,secret,payload,status,collection_ids)update_webhook— Update a webhook by UUID (same fields as create)delete_webhook— Delete a webhook by UUIDlist_webhook_logs— List delivery logs for a webhook (uuid; optionalpaginate,page)
Resources
The server exposes three reference resources that AI agents can read for context:
Field Types Reference (
elmapicms://field-types) — Complete reference of all 16 field types, their options, validations, and common patterns.Collections Guide (
elmapicms://collections-guide) — Guide for working with collections, singletons, reserved slugs, and best practices.Query Reference (
elmapicms://query-reference) — Full documentation for content queries:wherefilters with 13 operators, OR groups, relation filtering, sorting, pagination, and examples.
API token abilities
Your project API token needs the appropriate abilities for the tools you want to use:
Ability | Tools |
| list/get collections, entries, assets, webhooks; webhook logs |
| create entries, upload assets, create webhooks |
| update entries, publish/unpublish/discard draft, |
| delete entries, delete assets, delete webhooks |
| create/update/reorder collections and fields; add/set default project locales (MCP does not expose locale removal) |
Create the token in the ElmapiCMS dashboard under Project settings → API Tokens. Copy the Project ID from the project home page or Project settings → API Access when you configure this server.
Using Multiple Projects
Each MCP entry connects to a single ElmapiCMS project. To work with multiple projects, add separate entries in your MCP config with different env values.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCquality-maintenanceAn MCP server that enables AI assistants like Cursor and Claude to interact with the Storyblok Management API. It allows users to manage stories, tags, components, assets, and workflows through natural language commands.7427
- AlicenseCqualityDmaintenanceA SitecoreMCP version that can be used in enterprises100319Apache 2.0
- Alicense-qualityBmaintenanceOpen-source MCP server that turns any CMS backend into an AI-agent-ready content management system. It provides tools for content CRUD, idea management, and publication tracking, with safety features requiring human approval for publishing.MIT
- Flicense-qualityDmaintenanceAn MCP server wrapping the Cursor CLI agent, enabling Claude Code and other MCP clients to delegate tasks to Cursor's AI agent for file writing, bash commands, and codebase queries.
Related MCP Connectors
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elmapicms/elmapicms-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server