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.
MCP server URL
https://www.deeplead.io/api/mcpClaude
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/mcpCursor
{
"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_KEYCreate API keys under My Account → API. Tool calls spend the same credits as the app, see pricing.
search_parseTurn a plain-English description into search filtersbusinesses_searchSearch local businesses from Google Business Profilesorganizations_searchSearch organizations, or look them up by domainorganizations_enrichEnrich a company from its domainorganizations_findDecisionMakerFind the decision maker of an organization with a verified emailpersons_searchSearch persons with their emails and phonespersons_lookupLook up one person by LinkedIn URL, email, or name and company domainpersons_findEmailFind a person's work email by LinkedIn URL, or full name and company domainpersons_findPhoneFind a person's phone number by LinkedIn URL, email, or full name and company domaincontacts_createSave your own contacts or organizationscontacts_listList your contacts in a stable order; page with nextBeforecredits_getCurrent credit balanceSame 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"}'