Authenticated read+write Model Context Protocol server for @webhouse/cms. Enables AI assistants to create, update, and manage CMS content with API key authentication.
npm install @webhouse/cms-mcp-serverimport { createMcpServer } from "@webhouse/cms-mcp-server";
const server = createMcpServer({
siteUrl: "https://my-site.example.com",
apiKey: process.env.CMS_MCP_API_KEY,
});
// The MCP server exposes authenticated tools for creating,
// updating, publishing, and managing CMS content.See the main repository for full documentation.
MIT