inboxpilot-mcp
v0.1.0
Published
MCP server for InboxPilot — extract action items, deadlines, and contacts from email threads with AI
Downloads
20
Maintainers
Readme
InboxPilot MCP Server
Extract action items, deadlines, urgency levels, and key contacts from email threads — directly inside Claude.
Setup
1. Get a Free API Key
Sign up at useinboxpilot.com/pricing for a free API key.
2. Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"inboxpilot": {
"command": "npx",
"args": ["inboxpilot-mcp"],
"env": {
"INBOXPILOT_API_KEY": "your_api_key_here"
}
}
}
}3. VS Code / Cursor
{
"inboxpilot": {
"command": "npx",
"args": ["inboxpilot-mcp"],
"env": {
"INBOXPILOT_API_KEY": "your_api_key_here"
}
}
}Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| INBOXPILOT_API_KEY | Yes | Your API key from useinboxpilot.com |
| INBOXPILOT_API_URL | No | Custom API URL (default: https://useinboxpilot.com) |
Tools
analyze_emails
Analyze email threads to extract structured intelligence.
Parameters:
emails(required): Raw email thread text (max 50,000 characters)
Returns:
- Summary of the email thread
- Action items with priority (high/medium/low), deadlines, and assigners
- Key contacts with names, emails, and involvement
License
MIT
