greenhouse_list_applications
Pack: greenhouse · Endpoint: https://gateway.pipeworx.io/greenhouse/mcp
View job applications across your pipeline. Returns applicant names, job IDs, application status, and submission dates. Filter by job or stage (e.g., ‘screening’, ‘interview’).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | Greenhouse Harvest API key |
job_id | number | no | Filter by job ID (optional) |
status | string | no | Filter by status: active, converted, hired, rejected (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_applications","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_applications', {
"_apiKey": "your-greenhouse-api-key"
});
More examples
{
"_apiKey": "your-greenhouse-api-key",
"job_id": 54321,
"status": "active"
}
Response shape
Full JSON Schema
{
"type": "array",
"description": "List of job applications across pipeline",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Application ID"
},
"candidate_id": {
"type": "number",
"description": "Candidate ID"
},
"candidate": {
"type": "object",
"properties": {
"first_name": {
"type": "string",
"description": "Candidate first name"
},
"last_name": {
"type": "string",
"description": "Candidate last name"
}
}
},
"job_id": {
"type": "number",
"description": "Job ID"
},
"status": {
"type": "string",
"description": "Application status (active, converted, hired, rejected)"
},
"applied_at": {
"type": "string",
"description": "ISO date application was submitted"
},
"stage": {
"type": "string",
"description": "Current pipeline stage (e.g., screening, interview)"
}
}
}
}
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.