Workspace
Overview
Active work
Campaign health
Ops queue
Inbox and accounts
Campaign management
Campaigns
Creator discovery
Influencer Finder
Multi-inbox
Unread replies
Deliverability
Sending accounts
Selected item
Click an inbox message or sending account to open actions.
DeepSeek via OpenRouter
Agent Chat
Model Context Protocol
Connect Pitchee MCP to an AI client
This server exposes outreach tools over MCP so Claude, Cursor, n8n, or another MCP-compatible client can list tools and call them against the local demo database.
1
Start the MCP server
.venv/bin/python -m mcp_server.server --transport streamable-http --host 127.0.0.1 --port 8075 --path /mcp
2
Use the local MCP URL
http://127.0.0.1:8075/mcp
3
Add remote-style config
{
"mcpServers": {
"pitchee": {
"url": "http://127.0.0.1:8075/mcp"
}
}
}
4
Or use stdio config
{
"mcpServers": {
"pitchee": {
"command": ".../pitchee-mcp-demo/.venv/bin/python",
"args": ["-m", "mcp_server.server"],
"cwd": ".../pitchee-mcp-demo"
}
}
}