MeetBurn MCP Server
MeetBurn exposes a Model Context Protocol server so you can query your meeting data with natural language inside Claude Desktop or any MCP-compatible client.
1. Generate an API key
Go to Dashboard → Settings → Developer API Key and click Generate API Key. Copy the key — it's shown once.
Requires a Pro or Team plan.
2. Add to Claude Desktop
Open Claude Desktop → Settings → Developer → Edit Config, and add the following to your claude_desktop_config.json:
{
"mcpServers": {
"meetburn": {
"command": "npx",
"args": [
"-y",
"@anthropic-ai/mcp-server-fetch",
"https://striped-hornet-928.convex.site/mcp"
],
"env": {
"API_KEY": "mb_your_key_here"
}
}
}
}Replace mb_your_key_here with your real API key. Restart Claude Desktop after saving.
3. Ask Claude about your meetings
Once connected, you can ask Claude things like:
- “Which of my meetings are waste candidates?”
- “Draft a message to cancel the weekly all-hands.”
- “How much does my Design Review cost per year?”
- “Show me all meetings flagged for cancellation.”
Available tools
list_meetings
Returns all analyzed recurring meetings with their MeetBurn recommendation and annual cost.
get_meeting_detail
Returns full signal data for a specific meeting by series ID.
generate_draft
Generates a copy-paste-ready message to cancel, shorten, or make async a specific meeting.
Server endpoint
The MCP server is hosted at:
https://striped-hornet-928.convex.site/mcpAll requests must include Authorization: Bearer mb_your_key in the request header.
Need help?
Email hello@meetburn.app with any questions about the MCP integration.