greenhouse_list_jobs
Pack: greenhouse · Endpoint: https://gateway.pipeworx.io/greenhouse/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/greenhouse_list_jobs for the schema, then POST the same URL with its arguments for the data.
Browse open and closed job postings. Returns titles, IDs, departments, statuses, and posting dates. Use greenhouse_get_job for full details and candidate pipeline.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Greenhouse Harvest API key |
status | string | no | Filter by status: open, closed, draft (optional) |
per_page | number | no | Results per page (max 500, default 50) |
page | number | no | Page number (default 1) |
Example call
Arguments
{
"_apiKey": "your-greenhouse-api-key"
}
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_list_jobs","arguments":{"_apiKey":"your-greenhouse-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('greenhouse_list_jobs', {
"_apiKey": "your-greenhouse-api-key"
});
More examples
{
"_apiKey": "your-greenhouse-api-key",
"status": "open",
"per_page": 100
}
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | List of job postings with basic details |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "List of job postings with basic details",
"items": {
"type": "object",
"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 (open, closed, draft)"
},
"created_at": {
"type": "string",
"description": "ISO date job was created"
},
"updated_at": {
"type": "string",
"description": "ISO date job was updated"
}
}
}
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
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.