MCPpedia last refreshed this data
Config is the same across clients β only the file and path differ.
{
"mcpServers": {
"beehiiv": {
"env": {
"BEEHIIV_API": "bh-your-api-key-here",
"BEEHIIV_PUBLICATION_ID": "pub-your-publication-id-here"
},
"command": "/full/path/to/beehiiv-mcp-server-linux"
}
}
}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
MCP server for the PostFast API β schedule and manage social media posts via AI tools
MCP server for Google News and Google Trends
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)