greenhouse_list_jobs
Pack: greenhouse · Endpoint: https://gateway.pipeworx.io/greenhouse/mcp
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
Full JSON Schema
{
"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"
}
}
}
}
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.