findymail_reverse_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_reverse_email for the schema, then POST the same URL with its arguments for the data.

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_reverse_email({ email: “[email protected]”, _apiKey: “your-findymail-key” })

Parameters

NameTypeRequiredDescription
emailstringyesEmail address to look up, e.g. “[email protected]”
_apiKeystringyesYour Findymail API key (get one at findymail.com)

Example call

Arguments

{
  "email": "[email protected]",
  "_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_reverse_email","arguments":{"email":"[email protected]","_apiKey":"your-findymail-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('findymail_reverse_email', {
  "email": "[email protected]",
  "_apiKey": "your-findymail-api-key"
});

More examples

{
  "email": "[email protected]",
  "_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