Findymail

live EmailData

Find a work email by name + company domain, or look up the person behind an email. BYO key.

2 tools
0ms auth
free tier 50 calls/day

Tools

findymail_find_email

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 p

No parameters required.

Try it
findymail_reverse_email

Look up the person/LinkedIn profile behind an email address — give an email and get the person's name, company, job title, and LinkedIn URL when available. Reverse-email enrichment. Example: findymail

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/findymail/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/findymail/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"findymail_find_email","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("findymail_find_email", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("find a work email by name + company domain, or look up the person behind an email");

Related packs

Other Pipeworx packs in the same categories (Email, Data):