What is the io.github.jonradoff/lightcms MCP server?
AI-native CMS with 41 MCP tools for managing websites through natural language.
How to install io.github.jonradoff/lightcms
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
LIGHTCMS_URLrequiredURL of your LightCMS instance (e.g., https://example.com or http://localhost:8082)
LIGHTCMS_API_KEYrequiredsecretAPI key for authentication. Create one in the admin panel at /cm → Settings → API Keys.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"lightcms": {
"command": "https://github.com/jonradoff/lightcms/releases/download/v1.1.0/lightcms-darwin-arm64.mcpb",
"args": [],
"env": {
"LIGHTCMS_URL": "<YOUR_LIGHTCMS_URL>",
"LIGHTCMS_API_KEY": "<YOUR_LIGHTCMS_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"lightcms": {
"command": "https://github.com/jonradoff/lightcms/releases/download/v1.1.0/lightcms-darwin-arm64.mcpb",
"args": [],
"env": {
"LIGHTCMS_URL": "<YOUR_LIGHTCMS_URL>",
"LIGHTCMS_API_KEY": "<YOUR_LIGHTCMS_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"lightcms": {
"command": "https://github.com/jonradoff/lightcms/releases/download/v1.1.0/lightcms-darwin-arm64.mcpb",
"args": [],
"env": {
"LIGHTCMS_URL": "<YOUR_LIGHTCMS_URL>",
"LIGHTCMS_API_KEY": "<YOUR_LIGHTCMS_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"lightcms": {
"type": "stdio",
"command": "https://github.com/jonradoff/lightcms/releases/download/v1.1.0/lightcms-darwin-arm64.mcpb",
"args": [],
"env": {
"LIGHTCMS_URL": "<YOUR_LIGHTCMS_URL>",
"LIGHTCMS_API_KEY": "<YOUR_LIGHTCMS_API_KEY>"
}
}
}
}Claude Code
claude mcp add lightcms --env LIGHTCMS_URL=<YOUR_LIGHTCMS_URL> --env LIGHTCMS_API_KEY=<YOUR_LIGHTCMS_API_KEY> -- https://github.com/jonradoff/lightcms/releases/download/v1.1.0/lightcms-darwin-arm64.mcpbRelated MCP servers
Read-only admin MCP server for LastSaaS — dashboards, users, tenants, billing, logs, health.
View repository →