MCP Server
Connect AI assistants to your Bunmori CMS using Model Context Protocol
MCP Server
Bunmori provides a Model Context Protocol (MCP) server that enables AI assistants like Claude to interact directly with your CMS content.
What is MCP?
Model Context Protocol is an open standard for connecting AI assistants to external data sources and tools. With Bunmori's MCP server, AI assistants can:
- List and explore your collections
- Read items from collections
- Create and update content items
- Manage translations
Endpoint
The MCP endpoint is available at:
https://bunmori.com/api/mcpAuthentication
MCP requests require two headers:
Authorization: Bearer <token>- Your API access tokenX-Domain: <domain-slug>- The domain slug to access
Creating an Access Token
- Go to your domain settings in Bunmori
- Navigate to "Access Tokens"
- Create a new token with the scopes you need:
- read - List collections and read items
- write - Create and update items
Connecting AI Assistants
Claude Desktop / Claude Code
Add Bunmori to your MCP configuration:
claude mcp add bunmori --transport http https://bunmori.com/api/mcp \
--header "Authorization: Bearer bm_your_token" \
--header "X-Domain: your-domain-slug"Or manually add to your config file (~/.config/claude/mcp.json or Claude Desktop config):
{
"mcpServers": {
"bunmori": {
"transport": "http",
"url": "https://bunmori.com/api/mcp",
"headers": {
"Authorization": "Bearer bm_your_token",
"X-Domain": "your-domain-slug"
}
}
}
}Available Tools
See Tools Reference for the complete list of available tools.
Example Conversation
Once connected, you can ask Claude things like:
"List all my blog posts"
"Create a new article titled 'Getting Started with AI' dated today"
"Translate the article 'hello-world' to Spanish"
Claude will use the MCP tools to interact with your Bunmori content.