Greenhouse Harvest MCP Server
Provides tools for interacting with the Greenhouse Harvest API, enabling querying and management of recruiting data such as applications, candidates, jobs, interview stages, rejection reasons, and more.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Greenhouse Harvest MCP Servershow me my open job positions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Greenhouse Harvest MCP Server
An MCP (Model Context Protocol) server that wraps the Greenhouse Harvest v3 API. This allows Claude (or any MCP-compatible client) to query your Greenhouse recruiting data directly.
Prerequisites
Node.js 18+
A Greenhouse API client with OAuth2 credentials (
client_idandclient_secret)
Related MCP server: Greenhouse MCP Server by CData
Setup
1. Install dependencies and build
cd greenhouse-mcp
npm install
npm run build2. Configure Claude Desktop
Add the following to your Claude Desktop MCP configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"greenhouse": {
"command": "node",
"args": ["/absolute/path/to/greenhouse-mcp/dist/index.js"],
"env": {
"GREENHOUSE_CLIENT_ID": "your_client_id_here",
"GREENHOUSE_CLIENT_SECRET": "your_client_secret_here"
}
}
}
}Replace /absolute/path/to/greenhouse-mcp with the actual path to this directory.
3. Configure Claude Code (CLI)
Add to ~/.claude/claude_code_config.json (global) or .claude/settings.json (project):
{
"mcpServers": {
"greenhouse": {
"command": "node",
"args": ["/absolute/path/to/greenhouse-mcp/dist/index.js"],
"env": {
"GREENHOUSE_CLIENT_ID": "your_client_id_here",
"GREENHOUSE_CLIENT_SECRET": "your_client_secret_here"
}
}
}
}4. Restart Claude
Restart Claude Desktop or Claude Code for the MCP server to be detected.
Environment Variables
Variable | Required | Description |
| Yes | OAuth2 client ID from Greenhouse |
| Yes | OAuth2 client secret from Greenhouse |
Available Tools
Tool | Description |
| List applications with status, candidate, job, stage info |
| Get a single application by ID |
| Reject an application with a rejection reason |
| List tags applied to specific candidates |
| List which interview stage each application is in |
| List file attachments (resumes, cover letters, etc.) |
| List candidate tag definitions |
| List candidate profiles |
| Get a single candidate by ID |
| List reasons for closing jobs |
| List email templates (rejection emails, etc.) |
| List custom locations on job boards |
| List evaluation criteria on jobs |
| List hiring managers assigned to jobs |
| List interview pipeline stages on jobs |
| List interviews configured on jobs |
| List notes on jobs |
| List recruiters/sourcers/coordinators on jobs |
| List locations on job posts |
| List job postings (public and internal) |
| List jobs with status, department, and office info |
| Get a single job by ID |
| List rejection details for applications |
| List predefined rejection reasons |
Common Parameters
All list tools support:
per_page— Results per page (1-500, default 100)cursor— Pagination cursor from previous responseids— Comma-separated IDs to filter bycreated_at— Date filter, e.g.gte|2024-01-01T00:00:00Zupdated_at— Date filter, same format ascreated_at
Resource-Specific Filters
Tool | Additional Filters |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Write Operations
Tool | Required Parameters | Optional Parameters |
|
|
|
Pagination
Results include a next_cursor field when more pages are available. Pass that value as the cursor parameter to fetch the next page. When using cursor, it should be the only filter parameter (per API requirements).
Example Usage in Claude
"Show me all open jobs in Greenhouse"
"List the candidates created in the last 30 days"
"What are the interview stages for job 12345?"
"Find all resumes attached to candidate 57198627"
"Show me the rejection reasons available"
"Reject application 12345 with rejection reason 678"
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SenorLlama/greenhouse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server