revternal_search_developers

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

Search a live index of ~11.7M developers (GitHub-centric) by role, primary programming language, location, and recent activity — for recruiting, GTM/lead-gen, and developer-audience research. Returns matching GitHub usernames with role, primary language, location, and last-active timestamp. Filters: role (e.g. “backend engineer”, “ai/ml engineer”), primary_language (e.g. “Python”, “Rust”), location, active_within_days (only devs active in the last N days), sort_by (default last_active). Paginate with limit + offset. Example: revternal_search_developers({ primary_language: “Rust”, active_within_days: 30, limit: 20 }).

Parameters

NameTypeRequiredDescription
rolestringnoDeveloper role filter, e.g. “backend engineer”, “ai/ml engineer”, “frontend engineer”.
primary_languagestringnoPrimary programming language, e.g. “Python”, “Rust”, “TypeScript”.
locationstringnoLocation filter, e.g. “Berlin”, “United States”.
active_within_daysnumbernoOnly developers active within the last N days (>=1).
sort_bystringnoSort field. Default “last_active”.
limitnumbernoResults per page, 1-100 (default 20).
offsetnumbernoPagination offset (default 0).
_apiKeystringnoRevternal API key (x-api-key). Injected from the platform key when omitted.

Example call

Arguments

{
  "primary_language": "Rust",
  "active_within_days": 30,
  "limit": 20
}

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_search_developers","arguments":{"primary_language":"Rust","active_within_days":30,"limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('revternal_search_developers', {
  "primary_language": "Rust",
  "active_within_days": 30,
  "limit": 20
});

More examples

{
  "role": "backend engineer",
  "location": "Berlin",
  "active_within_days": 7,
  "sort_by": "last_active",
  "limit": 50,
  "offset": 0
}

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 September 5, 2026