findymail_find_email

Pack: findymail · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/findymail_find_email for the schema, then POST the same URL with its arguments for the data.

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 — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the findymail pack
{
  "mcpServers": {
    "findymail": {
      "url": "https://gateway.pipeworx.io/findymail/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026