findymail_reverse_email

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

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, 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