snov_email_profile
Pack: snov · Endpoint: https://gateway.pipeworx.io/snov/mcp
Look up the person behind an email address — “who is [email protected]?”. Returns the contact’s name, current job title and employer, industry, location, and linked social profiles via Snov.io email enrichment. Example: snov_email_profile({ email: “[email protected]”, _apiKey: “client_id:client_secret” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
email | string | yes | Email address to enrich, e.g. “[email protected]”. |
_apiKey | string | yes | Snov.io OAuth credentials as “client_id:client_secret” from app.snov.io/account/api (paid plan required). |
Example call
Arguments
{
"email": "[email protected]",
"_apiKey": "your-snov-client_id:your-snov-client_secret"
}
curl
curl -X POST https://gateway.pipeworx.io/snov/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"snov_email_profile","arguments":{"email":"[email protected]","_apiKey":"your-snov-client_id:your-snov-client_secret"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('snov_email_profile', {
"email": "[email protected]",
"_apiKey": "your-snov-client_id:your-snov-client_secret"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"snov": {
"url": "https://gateway.pipeworx.io/snov/mcp"
}
}
}
See Getting Started for client-specific install steps.