The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Garchi CMS MCP listing page.
Build and manage structured websites and applications with Garchi CMS using AI agents, official starter kits and a production MCP integration.
Build with your preferred framework and AI coding agent while Garchi provides the structured content backend. The application is written once; the business keeps managing content afterwards without routine changes to application code.
Garchi CMS is a hosted headless CMS by LumenHarbor Digital Solutions Limited. Content is organised as:
Your app fetches this over the REST API or the Node/PHP SDK and renders it. It does not replace your framework, database or hosting.
One installable integration with three parts.
MCP — the hosted Garchi MCP server, https://garchi.co.uk/mcp-oauth. This
is how an agent reads and writes your live CMS: listing spaces, creating and
editing pages and sections, managing data items, categories, metadata and
assets.
Skills — instructions that teach an agent how to use Garchi correctly:
| Skill | Responsibility |
|---|---|
garchi-build-site | Orchestration: understand the goal, inspect the project, choose starter kit vs. integration, connect MCP, model the content, verify content stays editable without code changes. |
garchi-render-content | The application code: server-side client, page and section renderers, nested sections, data items, metadata, assets, preview mode. |
garchi-manage-content | Content operations over MCP: pages, sections, templates, items, categories, assets — including how to handle destructive actions safely. |
Starter kits — official project scaffolds for Next.js, Nuxt and Laravel, referenced (not copied) from skills/garchi-build-site/references/starter-kits.md.
The repository is packaged as an Agent Plugin
(plugin.json + skills/ + mcp.json), with thin adapters for clients that
use their own manifest format. The skills live in one place: update a skill and
every supported agent gets the change.
Cursor loads Agent Plugins natively. While the plugin is under marketplace review, install it locally:
Then open Customize in the sidebar, find Garchi CMS, and authenticate
the garchi MCP server when prompted.
Add this repository as a plugin marketplace, then install:
Authorize the garchi MCP server with /mcp when prompted.
Add the repository as a plugin marketplace source:
Then install Garchi CMS from the Plugins Directory in the ChatGPT desktop app and restart it.
If the bundled MCP server does not connect, add it to Codex directly and log in:
Failing that, add the server by hand in ~/.codex/config.toml:
Garchi CMS is registered as an MCP connector in ChatGPT:
chatgpt.com/plugins/plugin_asdk_app_698da77dd2f48191ba19e15b0b188796.
Enable it there to use the Garchi tools in ChatGPT. The plugin's .app.json
points Codex and the ChatGPT desktop app at that same registered connector, so
a local install reuses it rather than registering the server twice.
Clients that implement the Agent Plugins v1
specification — VS Code and others —
read the root plugin.json, the skills/ directory and mcp.json directly.
Point the client at this repository.
To install just the skills into any of the agents supported by the skills
CLI:
Configure the MCP server separately — see garchi.co.uk/mcp-docs for per-client instructions, including the bearer-token endpoint for clients without OAuth support.
Once installed, these work without naming the MCP server, the skills or the SDK:
| Framework | Repository | SDK |
|---|---|---|
| Next.js | garchi-next-starter-kit | @garchicms/garchi-node-sdk |
| Nuxt | garchi-nuxt-starter-kit | @garchicms/garchi-node-sdk |
| Laravel | garchi-laravel-starter-kit | garchicms/garchi-sdk-php |
Bootstrap any of them:
-k accepts next, nuxt or laravel.
Any other framework — SvelteKit, Astro, Django, Rails, React Native — integrates through the Node SDK, the PHP SDK or the REST API instead. There is no scaffold for those, but Garchi works the same way behind them.
https://garchi.co.uk/mcp-oauth. It advertises OAuth 2.1 protected-resource
metadata (RFC 9728) with PKCE (S256) and dynamic client registration, so
supported clients run the authorization flow themselves and store the tokens.mcp.json and .mcp.json entries carry a URL and
nothing else.delete-section-tool and update-prop-template-tool — and
garchi-manage-content requires an explicit,
per-item confirmation before either runs, on top of your client's own tool
approval prompts.GARCHI_API_KEY used by
your app to read content is separate from MCP, is never exposed to the
browser, and belongs in your own environment configuration — not in this
repository.Agents can be wrong. Check the documentation when something does not behave as a skill describes.
MIT — see LICENSE.