Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"beehiiv-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
🚀 Super Quick Start: Get Beehiiv newsletter management working in Claude Desktop in under 2 minutes - no Java required!
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
DataForSEO API modelcontextprotocol server
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for Beehiiv Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
🚀 Super Quick Start: Get Beehiiv newsletter management working in Claude Desktop in under 2 minutes - no Java required!
Connect your Beehiiv newsletter to Claude Desktop and other AI assistants. Add subscribers, fetch posts, and manage publications using natural language.
| Method | Time | Requirements | Best For |
|---|---|---|---|
| 📦 Native Binary | 2 min | None! | Most users |
| ☕ Java Build | 5 min | Java 24+ | Developers |
Once set up, you can ask Claude Desktop things like:
Perfect for most users - Single file download, no installation required!
bh-)pub_)Option A: One-Command Install (Linux/macOS)
curl -fsSL https://raw.githubusercontent.com/danvega/beehiiv-mcp-server/main/scripts/install.sh | bash
Option B: Manual Download
Go to Latest Release and download:
beehiiv-mcp-server-linuxbeehiiv-mcp-server-macosbeehiiv-mcp-server-windows.exeMake executable (Linux/macOS only):
chmod +x beehiiv-mcp-server-*
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"beehiiv": {
"command": "/full/path/to/beehiiv-mcp-server-linux",
"env": {
"BEEHIIV_API": "bh-your-api-key-here",
"BEEHIIV_PUBLICATION_ID": "pub-your-publication-id-here"
}
}
}
}
⚠️ Use the full path to your downloaded binary file.
✅ Success: You should see Claude use the beehiiv_create_subscription tool!
For developers who want to build from source
./mvnw)git clone <this-repo>
cd beehiiv-mcp-server
./mvnw clean package -DskipTests
Then configure Claude Desktop with:
{
"mcpServers": {
"beehiiv": {
"command": "java",
"args": [
"-jar",
"/FULL/PATH/TO/target/beehiiv-mcp-server-0.0.3-SNAPSHOT.jar"
],
"env": {
"BEEHIIV_API": "bh-your-api-key-here",
"BEEHIIV_PUBLICATION_ID": "pub-your-publication-id-here"
}
}
}
}
For developers who want to create optimized native binaries
Native image compilation creates fast-starting, low-memory executables that don't require Java to run.
./mvnw)git clone <this-repo>
cd beehiiv-mcp-server
./mvnw clean package -Pnative -DskipTests
This creates platform-specific binaries in target/:
beehiiv-mcp-server-linuxbeehiiv-mcp-server-macosbeehiiv-mcp-server-windows.exeUse the native binary directly without Java:
{
"mcpServers": {
"beehiiv": {
"command": "/full/path/to/beehiiv-mcp-server-linux",
"env": {
"BEEHIIV_API": "bh-your-api-key-here",
... [View full README on GitHub](https://github.com/danvega/beehiiv-mcp-server#readme)