Connect your LeadPanther lead data to Claude and other AI assistants via the Model Context Protocol.
create_magnet_draft writes a draft magnet page only| Tool | Description |
|---|---|
| ping | Check server health and version. |
| get_account_info | Account summary: name, plan, lead counts. |
| get_dashboard_stats | Overview metrics: totals, qualified, sources, weekly/monthly. |
| query_leads | Search & filter leads by keyword, headline, source, email, intent, qualification. Paginated. |
| get_lead_detail | Full profile for one lead including comments, DMs, and intent signals. |
| get_qualified_leads | Shortcut: all qualified leads with optional filters. |
| list_lists | View all saved lead lists with metadata. |
| get_list_leads | Paginated leads within a specific list. |
| get_activity_feed | Recent comments & DMs across all sources, filterable by type/status/keyword. |
| list_magnets | Hosted lead magnet pages with status, slug, and public URL. |
| get_magnet | Magnet markdown content, hosted URL, and gate settings (CTA / external resource). |
| list_magnet_captures | Email captures from magnets, filterable by magnet and enrichment status. |
| get_capture_detail | One capture with person enrichment status and ICP score when available. |
| create_magnet_draft | Create a draft hosted magnet page (status draft). |
| list_ghostwriter_outputs | Ghostwriter session outputs (title, content, PDF) for posting elsewhere. |
For Claude.ai custom connectors, use the full https://app.leadpanther.ai/api/mcp URL.
Add this to your MCP client configuration:
{
"mcpServers": {
"leadpanther": {
"url": "https://app.leadpanther.ai/api/mcp"
}
}
}On first use, your MCP client will open a browser window for OAuth authentication.
The server uses OAuth 2.1 with PKCE. Sign in with your existing LeadPanther account — no API keys required. Access is limited to paying subscribers with an active plan. Magnet drafts can be created via MCP; other tools are read-only.
You: “How many leads do I have? Break it down by source.”
Tools used: get_dashboard_stats
Returns total leads, qualified count, leads with email, leads with intent, source breakdown (comments / DMs / intent), and weekly + monthly new leads.
You: “Show me all leads with VP in their headline who have email addresses.”
Tools used: query_leads(headline_filter="VP", has_email=true)
Returns paginated leads matching the headline filter that have a work or personal email on file.
You: “Tell me everything about John Smith.”
Tools used: query_leads(search="John Smith") then get_lead_detail(lead_id=...)
First finds the lead by name, then retrieves the full profile including all comment, DM, and intent signal history.
You: “Show me my lead lists, then the leads in my top list.”
Tools used: list_lists then get_list_leads(list_id=...)
Returns all saved lists with lead counts, then fetches paginated lead details for the chosen list.
You: “Show my published magnets and the latest captures with scores.”
Tools used: list_magnets(status="published") then list_magnet_captures(magnet_id=...) then get_capture_detail(capture_id=...)
Lists hosted magnets with public URLs, then captures for a magnet, then enrichment + ICP for a specific capture.