greenhouse_get_candidate

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

Get full candidate profile by ID. Returns resume, contact info, application history, interviews, and notes.

Parameters

NameTypeRequiredDescription
_apiKeystringyesGreenhouse Harvest API key
idnumberyesCandidate ID

Example call

Arguments

{
  "_apiKey": "your-greenhouse-api-key",
  "id": 12345
}

curl

curl -X POST https://gateway.pipeworx.io/greenhouse/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"greenhouse_get_candidate","arguments":{"_apiKey":"your-greenhouse-api-key","id":12345}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('greenhouse_get_candidate', {
  "_apiKey": "your-greenhouse-api-key",
  "id": 12345
});

Response shape

FieldTypeDescription
idnumberCandidate ID
first_namestringCandidate first name
last_namestringCandidate last name
emailstringPrimary email address
phonestringPhone number
resumestringResume text or URL
applicationsarrayList of applications
interviewsarrayList of interviews
notesarrayNotes on candidate
Full JSON Schema
{
  "type": "object",
  "description": "Full candidate profile with resume, contact info, and history",
  "properties": {
    "id": {
      "type": "number",
      "description": "Candidate ID"
    },
    "first_name": {
      "type": "string",
      "description": "Candidate first name"
    },
    "last_name": {
      "type": "string",
      "description": "Candidate last name"
    },
    "email": {
      "type": "string",
      "description": "Primary email address"
    },
    "phone": {
      "type": "string",
      "description": "Phone number"
    },
    "resume": {
      "type": "string",
      "description": "Resume text or URL"
    },
    "applications": {
      "type": "array",
      "description": "List of applications",
      "items": {
        "type": "object"
      }
    },
    "interviews": {
      "type": "array",
      "description": "List of interviews",
      "items": {
        "type": "object"
      }
    },
    "notes": {
      "type": "array",
      "description": "Notes on candidate",
      "items": {
        "type": "object"
      }
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026