snov_domain_search

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

Find every email address on a company domain — “who works at riotgames.com and what are their emails?”. Returns emails with first/last name, job position, and type (personal or generic), plus company info, from Snov.io. Complements Hunter domain search. Example: snov_domain_search({ domain: “riotgames.com”, limit: 50, _apiKey: “client_id:client_secret” })

Parameters

NameTypeRequiredDescription
domainstringyesCompany domain, no protocol, e.g. “riotgames.com”
typestringnoWhich emails to return: “all” (default), “personal”, or “generic”.
limitintegernoMax emails to return (default 20, max 50).
_apiKeystringyesSnov.io OAuth credentials as “client_id:client_secret” from app.snov.io/account/api (paid plan required).

Example call

Arguments

{
  "domain": "riotgames.com",
  "limit": 50,
  "_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_domain_search","arguments":{"domain":"riotgames.com","limit":50,"_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_domain_search', {
  "domain": "riotgames.com",
  "limit": 50,
  "_apiKey": "your-snov-client_id:your-snov-client_secret"
});

More examples

{
  "domain": "stripe.com",
  "type": "personal",
  "limit": 25,
  "_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.

Regenerated from source · build August 19, 2026