greenhouse_get_job

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

Get complete job details by ID. Returns description, requirements, hiring team, and linked applications.

Parameters

NameTypeRequiredDescription
_apiKeystringyesGreenhouse Harvest API key
idnumberyesJob ID

Example call

Arguments

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

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_job","arguments":{"_apiKey":"your-greenhouse-api-key","id":54321}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
idnumberJob ID
titlestringJob title
departmentstringDepartment name
statusstringJob status
descriptionstringFull job description
requirementsstringJob requirements
hiring_teamarrayMembers of hiring team
applicationsarrayLinked applications for this job
Full JSON Schema
{
  "type": "object",
  "description": "Complete job posting with description, requirements, and applications",
  "properties": {
    "id": {
      "type": "number",
      "description": "Job ID"
    },
    "title": {
      "type": "string",
      "description": "Job title"
    },
    "department": {
      "type": "string",
      "description": "Department name"
    },
    "status": {
      "type": "string",
      "description": "Job status"
    },
    "description": {
      "type": "string",
      "description": "Full job description"
    },
    "requirements": {
      "type": "string",
      "description": "Job requirements"
    },
    "hiring_team": {
      "type": "array",
      "description": "Members of hiring team",
      "items": {
        "type": "object"
      }
    },
    "applications": {
      "type": "array",
      "description": "Linked applications for this job",
      "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