- Home
- MCP servers
- BlogBurst
BlogBurst
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"shensi8312-blogburst-mcp-server": {
"command": "npx",
"args": [
"-y",
"blogburst-mcp-server"
],
"env": {
"BLOGBURST_API_KEY": "YOUR_API_KEY"
}
}
}
}You can enable BlogBurst’s MCP server to generate blogs, repurpose content, create platform-specific posts, and publish across multiple platforms from an MCP client. This server is driven by a single, reusable configuration that runs via the NPX-based CLI workflow, allowing you to securely provide your API key and access BlogBurst features directly from your client setup.
How to use
You will connect an MCP client to the BlogBurst MCP server by configuring a local client to run the provided MCP command and passing your API key. Once connected, you can generate full blog posts from topics, repurpose content into social posts, generate platform-specific content, explore trending topics, brainstorm titles, and publish to connected platforms.
How to install
Prerequisites: ensure you have Node.js installed on your system. Use a modern LTS version for best compatibility. You will also need to have an API key from BlogBurst. Follow these steps to set up and start using the MCP server through a client that supports MCP connections.
To run the BlogBurst MCP server from your environment, you can execute the provided NPX command with your API key configured in your client configuration:
BLOGBURST_API_KEY=your-api-key-here npx -y blogburst-mcp-server
If you prefer to configure the client via a JSON file, include the following configuration in your client settings (this example is for a client that reads a JSON config called claude_desktop_config.json):
{ "mcpServers": { "blogburst": { "command": "npx", "args": ["-y", "blogburst-mcp-server"], "env": { "BLOGBURST_API_KEY": "your-api-key-here" } } } }
Replace your-api-key-here with your actual API key obtained from BlogBurst Dashboard > API Keys. After configuring, you can start issuing requests from your MCP client to generate blogs, repurpose content, or publish to connected platforms.
Configuration and usage notes
Configure your MCP client to load the BlogBurst MCP server as shown in the example configuration above. Use your API key to authenticate each request. You can ask the client to perform tasks such as composing a blog post from a topic, turning an article into social posts for Twitter and LinkedIn, discovering trending topics, brainstorming titles, or publishing content to Bluesky, Telegram, and Discord.
Security and best practices
Keep your API key secure and avoid exposing it in shared configurations or public repositories. If you work across multiple machines, prefer environment variables at runtime rather than embedding keys in source files. Rotate keys periodically and review connected platforms to ensure only trusted channels are enabled.
Configuration example for the client
{
"mcpServers": {
"blogburst": {
"command": "npx",
"args": ["-y", "blogburst-mcp-server"],
"env": {
"BLOGBURST_API_KEY": "your-api-key-here"
}
}
}
}
Notes
This MCP server exposes a set of capabilities to generate and publish content efficiently. You can access features such as blog generation, content repurposing, platform-specific content generation, and publishing via the connected MCP client once the server is running with your API key configured.
Available tools
generate_blog
Create a complete blog post from a given topic or prompt.
repurpose_content
Convert a URL or text into social media posts suitable for multiple platforms.
generate_platform_content
Produce platform-optimized content tailored to each social channel.
get_trending_topics
Fetch trending topics from various sources such as Hacker News, Reddit, Google Trends, and Product Hunt.
brainstorm_titles
AI-powered brainstorming for engaging post titles.
publish_content
Publish generated content directly to connected platforms (Bluesky, Telegram, Discord).
get_connected_platforms
Query which platforms are currently connected to the MCP server.
get_usage
Check API usage and limits for monitoring and budgeting.