greenhouse_list_applications

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/greenhouse_list_applications for the schema, then POST the same URL with its arguments for the data.

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

NameTypeRequiredDescription
_apiKeystringyesGreenhouse Harvest API key
job_idnumbernoFilter by job ID (optional)
statusstringnoFilter by status: active, converted, hired, rejected (optional)
per_pagenumbernoResults per page (max 500, default 50)
pagenumbernoPage 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

Always returns: items, count

FieldTypeDescription
itemsarrayList of job applications across pipeline
countintegerNumber of items returned.
Full JSON Schema
{
  "type": "object",
  "properties": {
    "items": {
      "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)"
          }
        }
      }
    },
    "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.

Regenerated from source · build September 22, 2026