findymail_find_email

Pack: findymail · Endpoint: https://gateway.pipeworx.io/findymail/mcp

Find the work email for a person by name + company domain — give a person’s full name and their company domain and get their verified business email (with job title and LinkedIn when available). B2B prospecting / outreach. Example: findymail_find_email({ name: “Patrick Collison”, domain: “stripe.com”, _apiKey: “your-findymail-key” })

Parameters

NameTypeRequiredDescription
namestringyesFull name of the person, e.g. “Patrick Collison”
domainstringyesCompany domain (no protocol), e.g. “stripe.com”
_apiKeystringyesYour Findymail API key (get one at findymail.com)

Example call

Arguments

{
  "name": "Patrick Collison",
  "domain": "stripe.com",
  "_apiKey": "your-findymail-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/findymail/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"findymail_find_email","arguments":{"name":"Patrick Collison","domain":"stripe.com","_apiKey":"your-findymail-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('findymail_find_email', {
  "name": "Patrick Collison",
  "domain": "stripe.com",
  "_apiKey": "your-findymail-api-key"
});

More examples

{
  "name": "Sarah Chen",
  "domain": "google.com",
  "_apiKey": "your-findymail-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "findymail": {
      "url": "https://gateway.pipeworx.io/findymail/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026