Deeplead MCP server and API

Give Claude, ChatGPT, Cursor or your own agent access to Deeplead: search local businesses, companies and people, and find decision makers with verified emails and phone numbers.

Connect your AI app

MCP server URL

https://www.deeplead.io/api/mcp

Claude

Settings → Connectors → Add custom connector, paste the URL and sign in to Deeplead.

ChatGPT

Settings → Apps & Connectors → Create, paste the URL and sign in to Deeplead.

Claude Code

claude mcp add --transport http deeplead https://www.deeplead.io/api/mcp

Cursor

{ "mcpServers": { "deeplead": { "url": "https://www.deeplead.io/api/mcp" } } }

Any other client

Tools without sign-in pass an API key as a Bearer header:

Authorization: Bearer YOUR_API_KEY

Create API keys under My Account → API. Tool calls spend the same credits as the app, see pricing.

Tools

  • search_parseTurn a plain-English description into search filters
  • businesses_searchSearch local businesses from Google Business Profiles
  • organizations_searchSearch organizations, or look them up by domain
  • organizations_enrichEnrich a company from its domain
  • organizations_findDecisionMakerFind the decision maker of an organization with a verified email
  • persons_searchSearch persons with their emails and phones
  • persons_lookupLook up one person by LinkedIn URL, email, or name and company domain
  • persons_findEmailFind a person's work email by LinkedIn URL, or full name and company domain
  • persons_findPhoneFind a person's phone number by LinkedIn URL, email, or full name and company domain
  • contacts_createSave your own contacts or organizations
  • contacts_listList your contacts in a stable order; page with nextBefore
  • credits_getCurrent credit balance

REST API

Same tools over HTTP

Base URL https://www.deeplead.io/api/v1, authenticated with your API key as a Bearer token.

curl https://www.deeplead.io/api/v1/search/parse \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"query":"CFOs at US logistics companies with 50-200 staff"}'