We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ousepachn/beehiivanalyticsMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
manifest.json•2.31 KiB
{
"dxt_version": "0.2",
"name": "beehiiv-analytics-mcp",
"display_name": "Beehiiv Analytics MCP Server",
"version": "1.0.0",
"description": "MCP server for Beehiiv analytics - read-only access to publications, posts, and segments data",
"long_description": "A comprehensive MCP server that provides read-only access to Beehiiv's newsletter platform API for analytics. This extension allows you to analyze publications, posts, and segments directly from Claude Desktop. Perfect for content creators and newsletter managers who want to analyze their Beehiiv data and track performance metrics.",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ousepachn/beehiivanalyticsMCP"
},
"homepage": "https://github.com/ousepachn/beehiivanalyticsMCP",
"server": {
"type": "python",
"entry_point": "beehiiv_mcp_server.py",
"mcp_config": {
"command": "python3",
"args": [
"${__dirname}/beehiiv_mcp_server.py"
],
"env": {
"BEEHIIV_API_KEY": "${user_config.api_key}"
}
}
},
"user_config": {
"api_key": {
"type": "string",
"title": "Beehiiv API Key",
"description": "Your Beehiiv API key for authentication. You can find this in your Beehiiv dashboard under Settings > API.",
"sensitive": true,
"required": true
}
},
"tools": [
{
"name": "list_publications",
"description": "List all publications accessible with the API key"
},
{
"name": "get_publication_details",
"description": "Get detailed information about a specific publication"
},
{
"name": "list_posts",
"description": "List posts from a publication with various filters (status, audience, platform, date sorting)"
},
{
"name": "get_post_details",
"description": "Get detailed information about a specific post with optional content expansion"
},
{
"name": "get_posts_summary_stats",
"description": "Get aggregate statistics for all posts in a publication"
},
{
"name": "list_segments",
"description": "List all segments for a publication"
},
{
"name": "get_segment_details",
"description": "Get detailed information about a specific segment"
}
]
}