snov_domain_email_count

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

How many email addresses does Snov.io have for a domain? — a free pre-check before spending credits on a full snov_domain_search. Example: snov_domain_email_count({ domain: “riotgames.com”, _apiKey: “client_id:client_secret” })

Parameters

NameTypeRequiredDescription
domainstringyesCompany domain, no protocol, e.g. “riotgames.com”
_apiKeystringyesSnov.io OAuth credentials as “client_id:client_secret” from app.snov.io/account/api (paid plan required).

Example call

Arguments

{
  "domain": "riotgames.com",
  "_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_email_count","arguments":{"domain":"riotgames.com","_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_email_count', {
  "domain": "riotgames.com",
  "_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 18, 2026