revternal_people_search

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

Search Revternal’s people-intelligence index for any person — not just developers — by job title, seniority, location, current company domain, or skills. Returns matching people with name, headline, and profile fields, plus an opaque cursor for the next page. At least one filter is required. Seniority values: entry, senior, manager, director, vp, c_suite, owner, partner. Countries use 3-letter ISO codes (USA, GBR, IND). Use for recruiting, GTM prospecting, and lead research when you have criteria rather than a specific profile. Example: revternal_people_search({ job_titles: [“Software Engineer”], countries: [“USA”], page_size: 5 }).

Parameters

NameTypeRequiredDescription
job_titlesarraynoCurrent job titles to match, e.g. [“Software Engineer”, “CTO”]. A single string is also accepted.
itemsstringno
seniorityarraynoSeniority levels to match: entry, senior, manager, director, vp, c_suite, owner, partner.
itemsstringno
countriesarrayno3-letter ISO country codes, e.g. [“USA”, “GBR”]. Common 2-letter codes are auto-converted.
itemsstringno
citiesarraynoCity names to match, e.g. [“San Francisco”].
itemsstringno
company_domainsarraynoCurrent-company website domains, e.g. [“openai.com”].
itemsstringno
skillsarraynoSkills or keywords matched across profile fields, e.g. [“Python”, “FastAPI”].
itemsstringno
stealth_founderbooleannoWhen true, limit results to stealth founders.
page_sizenumbernoResults per page, 1-100 (default 5).
cursorstringnoOpaque cursor from the previous response (next_cursor) — pass back unmodified to paginate.
_apiKeystringnoRevternal API key (x-api-key). Injected from the platform key when omitted.

Example call

Arguments

{
  "job_titles": [
    "Software Engineer"
  ],
  "countries": [
    "USA"
  ],
  "page_size": 5
}

curl

curl -X POST https://gateway.pipeworx.io/revternal/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"revternal_people_search","arguments":{"job_titles":["Software Engineer"],"countries":["USA"],"page_size":5}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('revternal_people_search', {
  "job_titles": [
    "Software Engineer"
  ],
  "countries": [
    "USA"
  ],
  "page_size": 5
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "revternal": {
      "url": "https://gateway.pipeworx.io/revternal/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026