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
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Greenhouse Harvest API key |
id | number | yes | Job 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
| Field | Type | Description |
|---|---|---|
id | number | Job ID |
title | string | Job title |
department | string | Department name |
status | string | Job status |
description | string | Full job description |
requirements | string | Job requirements |
hiring_team | array | Members of hiring team |
applications | array | Linked 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.