Concrete CMS MCP Server
This server acts as an interface between AI agents/LLMs and Concrete CMS, enabling programmatic management of sites via its REST API.
Core capabilities:
Account & System: Retrieve account details and system info.
Pages: List, get, create, update, delete, and traverse child pages; include attributes, areas, files, and content.
Page Content Helpers: Read page as sanitized HTML, raw HTML, and plain text; safely update content by creating new versions and remapping block IDs.
Page Versions: List, get, update (approve, set publish end date), and delete specific versions.
Blocks: Add, update, delete blocks in areas, find/delete by ID.
Files: List, upload, update, delete, move files with metadata.
Users: List, get, create, update, delete, change passwords, manage attributes.
Groups: List, get, create user groups.
Sites: List sites, get by ID or default site.
Extensibility: Custom OpenAPI specs allow additional endpoints.
Deployment: Install locally for Claude Desktop or remotely via systemd/Docker; OAuth2 auth with token encryption.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Concrete CMS MCP Servershow me the page tree"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Concrete CMS MCP Server
A Model Context Protocol (MCP) server for Concrete CMS built with TypeScript.

Installation
Enable API in Concrete CMS
Since the MCP server uses the Concrete CMS API, you need to enable it in your Concrete CMS installation first. The Concrete CMS documentation provides an introduction to the REST API and to its configuration.
When you create the API Integration in Concrete CMS (System & Settings > API > Integrations), you have to set the Redirect URI to the address where the MCP server receives the OAuth callback.
If you run the MCP server locally (for example with Claude Desktop, or with the prebuilt .mcpb extension), the redirect URI is:
http://localhost:3000/callback3000 is the default port: if you customize it with the HTTP_PORT setting, adjust the redirect URI accordingly.
If you instead run the MCP server remotely (HTTP transport), the redirect URI is ${PUBLIC_BASE_URL}/oauth/callback — see the Remote MCP Server Guide for the details.
Take note of the resulting Client ID and Client Secret: you'll need them when configuring the MCP server (see Settings below).
Install the MCP Server
Via a prebuilt extension
The easiest way to use the Concrete CMS MCP Server with Claude Desktop is to install the prebuilt .mcpb extension:
Go to the Releases page and download the latest
concretecms-mcp-server.mcpbfile.In Claude Desktop, navigate to Settings > Extensions.
Click Advanced settings.
In the Extension Developer section, click the Install Extension button and select the downloaded
concretecms-mcp-server.mcpbfile.
Claude Desktop will then ask you for the configuration (Concrete CMS URL, API client ID and secret, and scopes). See Settings below for what to enter.
From source
You have to clone this repo and compile it:
git clone https://github.com/concrete5-community/concretecms-mcp-server.git
cd concretecms-mcp-server
npm ci && npm run buildIf you use Claude Desktop:
Navigate to Settings > Extensions
Click Advanced settings
In the Extension Developer section, click Install Unpacked Extension
Choose the
concretecms-mcp-serverdirectory
You can also add this MCP server via JSON. For example:
{
"mcpServers": {
"concretecms": {
"command": "node",
"args": ["/path/to/concretecms-mcp-server/dist/index.js"],
"env": {
"CONCRETE_CANONICAL_URL": "https://your-concrete.example",
"CONCRETE_API_CLIENT_ID": "YOUR_API_CLIENT_ID",
"CONCRETE_API_CLIENT_SECRET": "YOUR_API_CLIENT_SECRET",
"CONCRETE_API_SCOPE": "account:read system:info:read"
}
}
}
}Related MCP server: WordPressMCP Server
Usage
Settings
Set
CONCRETE_CANONICAL_URLto the URL of your Concrete CMS installation.Set
CONCRETE_API_CLIENT_IDandCONCRETE_API_CLIENT_SECRETto the credentials of a registered API integration.Set
CONCRETE_API_SCOPEto the scopes you want to request. You can find a list of available scopes fromhttps://your-concrete.example/index.php/dashboard/system/api/scopes.
After you've configured the MCP server, please restart Claude Desktop. On the first tool call, it will open an authorization window — sign in and authorize the requested scopes.
Now you should be able to get information about your Concrete CMS in a chat. A refresh token will be saved under ~/.concretecms-mcp/tokens/<site>/local.tokens.json (one directory per CONCRETE_CANONICAL_URL), so you don't need to sign in again.
Use separate MCP server entries in Claude Desktop for each Concrete CMS site — each site's tokens are stored independently.
Optionally set TOKEN_ENCRYPTION_KEY in the env block to encrypt tokens at rest. See the Security Guide for details.
For more information about local MCP servers, please refer to the Claude Desktop documentation.
Security
OAuth refresh tokens are stored on disk under ~/.concretecms-mcp/tokens/<site>/ by default (namespaced per CONCRETE_CANONICAL_URL). See the Security Guide for the threat model, chmod 600 behavior, encryption, cleanup commands, and remote deployment guidance.
Run as a remote MCP server
To host the MCP server on a remote Linux server, see the Remote MCP Server Guide.
It covers systemd deployment, reverse proxy setup, OAuth configuration, and Docker as an alternative.
To connect a local desktop client (ChatGPT Streamable HTTP, Claude Desktop via mcp-remote, or another remote MCP client) to that server, see Connect Local MCP Clients to a Remote Server.
For developers: build an MCP client or AI agent
If you are building a programmatic MCP client or AI agent (backend service, web app with chat UI, or Concrete CMS package) that connects to a remote MCP server over HTTP, see the MCP Client Developer Guide.
It covers the HTTP API, per-user OAuth, agent loops, and implementation patterns. For end-user desktop apps talking to a remote server, see docs/local-clients.md. For local stdio Claude Desktop, use the section above.
Use your own OpenAPI specification
The MCP server is loading openapi.yml to know which endpoints are available in the Concrete CMS API.
The bundled openapi.yml file is generated from the Concrete CMS default installation, but you can also use your own OpenAPI specification.
If you added some Express Objects to your Concrete CMS installation and want to use them in your chat, you can generate a new OpenAPI specification from your installation and use it instead.
Check "Include this entity in REST API integrations." in the Express Object settings.
Open
https://your-concrete.example/index.php/ccm/system/api/openapi.jsonin your browser, and copy the JSON output.Replace the
openapi.ymlfile in theconcretecms-mcp-serverdirectory with your own OpenAPI specification.
Features
This MCP server is depended on the Concrete CMS API, so it supports all features that are available through the API. For example:
Get information about your Concrete CMS installation.
Get content from your Concrete CMS installation.
Update content in your Concrete CMS installation.
Upload files to your Concrete CMS installation.
Get a list of users in your Concrete CMS installation.
And more!
You can find a list of all available endpoints in Concrete CMS REST API - Endpoints
High-level page tools
In addition to OpenAPI-generated tools, the server exposes helpers for common page workflows:
get_page_content— read a page as a document (html,html_raw, and plaintext) viaincludes=contentupdate_page_content— create an editable page version, remap block IDs, then update specific blocks (PUT page + PUT area)
Prefer these when reviewing or editing page copy. Use the raw OpenAPI tools (getPageById, updateBlockInPageArea, etc.) for lower-level control.
Required OAuth scopes for the update helper: pages:read, pages:update, pages:areas:update_blocks.
ToDos
Test with other MCP clients.
Add useful prompts.
Support another authentication method than OAuth2.
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
- Alicense-qualityDmaintenanceEnables AI assistants to interact with WordPress sites through the REST API. Supports multiple WordPress sites with secure authentication, enabling content management, post operations, and site configuration through natural language.37MIT
- Alicense-qualityFmaintenanceEnables interaction with WordPress sites through the REST API, supporting content management for posts, pages, users, plugins, and custom post types with Application Password authentication.2,5042MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to manage WordPress sites through natural conversation, supporting post creation, content updates, site queries, and draft-to-publish workflows via the WordPress REST API.9MIT
- FlicenseBqualityDmaintenanceEnables interaction with Frappe and ERPNext sites through their REST API endpoints. It supports standard HTTP methods for performing CRUD operations and managing site data using natural language.12
Related MCP Connectors
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Sync Lightroom, Figma, Dropbox & Canva assets to WordPress and Shopify via natural language.
Sync Lightroom, Figma, Dropbox & Canva assets to WordPress and Shopify via natural language.
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/concrete5-community/concretecms-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server