@openbeebee/mcp-server
v0.2.0
Published
MCP server for OpenBee - publish and manage blog posts from AI assistants
Maintainers
Readme
@openbeebee/mcp-server
MCP (Model Context Protocol) server for OpenBee — publish and manage blog posts directly from AI assistants like Claude, Cursor, and other MCP-compatible clients.
Installation
npm install -g @openbeebee/mcp-serverOr use directly with npx:
npx @openbeebee/mcp-serverConfiguration
Environment Variables
| Variable | Description |
|----------|-------------|
| OPENBEE_API_URL | OpenBee API base URL |
| OPENBEE_API_KEY | API token for authentication |
MCP Client Config
Add to your MCP client configuration (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"openbee": {
"command": "npx",
"args": ["-y", "@openbeebee/mcp-server"],
"env": {
"OPENBEE_API_URL": "https://your-openbee-instance.com",
"OPENBEE_API_KEY": "your-api-key"
}
}
}
}Local Auth
Alternatively, the server reads credentials from ~/.openbee/token.json:
{
"baseUrl": "https://your-openbee-instance.com",
"token": "your-api-key"
}Available Tools
| Tool | Description |
|------|-------------|
| bee_publish | Publish a post (supports Markdown and HTML) |
| bee_draft | Save content as a draft |
| bee_search | Search for posts |
| bee_my_posts | List your recent posts |
| bee_config | View or update user settings |
License
MIT
