revternal_enrich_person
Pack: revternal · Endpoint: https://gateway.pipeworx.io/revternal/mcp
Enrich one person from their LinkedIn profile URL via Revternal — full normalized profile: name, headline, current company and title, past work experience, education, skills, certifications, and profile picture. Default (fetch_live: false) reads Revternal’s existing record for that URL and returns found:false if there is none; set fetch_live: true to have Revternal fetch a fresh profile (slower, higher vendor cost). Use to enrich a lead, candidate, or contact you already have a LinkedIn URL for. Example: revternal_enrich_person({ linkedin_url: “https://www.linkedin.com/in/vishalv06” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
linkedin_url | string | yes | Personal LinkedIn profile URL containing /in/, e.g. “https://www.linkedin.com/in/vishalv06”. A bare username is also accepted. |
fetch_live | boolean | no | false (default): return Revternal’s existing profile record, found:false if none. true: Revternal fetches fresh profile data (slower, higher vendor cost). |
_apiKey | string | no | Revternal API key (x-api-key). Injected from the platform key when omitted. |
Example call
Arguments
{
"linkedin_url": "https://www.linkedin.com/in/vishalv06"
}
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_enrich_person","arguments":{"linkedin_url":"https://www.linkedin.com/in/vishalv06"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('revternal_enrich_person', {
"linkedin_url": "https://www.linkedin.com/in/vishalv06"
});
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.