LeadPanther MCP Server

Connect your LeadPanther lead data to Claude and other AI assistants via the Model Context Protocol.

Features

  • 15 tools — magnets, captures, ghostwriter outputs, leads, stats, lists, and activity
  • OAuth 2.1 with PKCE — secure authentication via your LeadPanther account
  • Streamable HTTP transport — works with Claude Desktop, claude.ai, and any MCP client
  • Most tools are read-only; create_magnet_draft writes a draft magnet page only

Available Tools (15)

ToolDescription
pingCheck server health and version.
get_account_infoAccount summary: name, plan, lead counts.
get_dashboard_statsOverview metrics: totals, qualified, sources, weekly/monthly.
query_leadsSearch & filter leads by keyword, headline, source, email, intent, qualification. Paginated.
get_lead_detailFull profile for one lead including comments, DMs, and intent signals.
get_qualified_leadsShortcut: all qualified leads with optional filters.
list_listsView all saved lead lists with metadata.
get_list_leadsPaginated leads within a specific list.
get_activity_feedRecent comments & DMs across all sources, filterable by type/status/keyword.
list_magnetsHosted lead magnet pages with status, slug, and public URL.
get_magnetMagnet markdown content, hosted URL, and gate settings (CTA / external resource).
list_magnet_capturesEmail captures from magnets, filterable by magnet and enrichment status.
get_capture_detailOne capture with person enrichment status and ICP score when available.
create_magnet_draftCreate a draft hosted magnet page (status draft).
list_ghostwriter_outputsGhostwriter session outputs (title, content, PDF) for posting elsewhere.

Setup

Claude.ai (Recommended)

  1. Go to Settings → Connectors in Claude.ai
  2. Scroll to the bottom and click Add custom connector
  3. Enter Name: LeadPanther
  4. Enter Remote MCP server URL: https://app.leadpanther.ai/api/mcp
  5. Click Add, then Connect
  6. Sign in with your LeadPanther account and approve access

For Claude.ai custom connectors, use the full https://app.leadpanther.ai/api/mcp URL.

Claude Desktop / MCP Clients

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.

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.

Usage Examples

1. Dashboard overview

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.

2. Search 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.

3. Lead deep dive

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.

4. List management

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.

5. Magnet distribution

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.

Privacy & Support