open-greenhouse-mcp
Allows interaction with the Greenhouse recruiting platform, providing tools for candidate screening, pipeline management, analytics, and recruiter workflows such as bulk reject, advance, and tagging.
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., "@open-greenhouse-mcpWho needs my attention this week?"
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.
open-greenhouse-mcp
Production-ready MCP server for Greenhouse, designed for recruiters and hiring teams.
Most Greenhouse MCP servers mirror the API endpoint by endpoint. This one is built for recruiting teams: safe defaults, role-based profiles, and workflow tools that turn multi-step API operations into single actions.
Choose a Profile
Profile | Tools | Can write? | Recommended for |
| 103 | No | First-time setup, reporting, hiring managers |
| 127 | Yes (safe ops) | Day-to-day recruiting work |
| 181 | Yes (all) | Admins, ops, advanced automation |
Related MCP server: Greenhouse MCP Server by CData
Quick Start
pip install open-greenhouse-mcpAdd to your MCP client config (Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json, Cursor: Settings > MCP):
{
"mcpServers": {
"greenhouse": {
"command": "open-greenhouse-mcp",
"env": {
"GREENHOUSE_API_KEY": "your-harvest-api-key",
"GREENHOUSE_TOOL_PROFILE": "read-only"
}
}
}
}Start in read-only mode to validate connectivity and tool behaviour, then switch to recruiter or full when you need write access.
Your API key is in Greenhouse under Configure > Dev Center > API Credential Management.
What You Can Ask
"Show me the pipeline for our Senior Engineer role"
"Who needs my attention this week?"
"What are our conversion rates for the Backend Intern role?"
"Find Sarah Chen and pull up her resume"
"Which sources are actually producing hires?"
"Bulk reject everything inactive for 30+ days on the Account Manager role"
"Screen this candidate for the Backend Engineer role — give me the full picture"
"Search our engineering pipelines for anyone with Rust and distributed systems experience"
"What new applications came in since yesterday?"
See more examples with full output.
See it in action

Safety
Access is limited by your Greenhouse API key permissions
Read-only profile is recommended for first setup
Destructive actions require explicit IDs — the server never infers targets
Write operations support audit attribution via
GREENHOUSE_ON_BEHALF_OFBulk actions are rate-limited to stay within API limits
Compatibility
Client | Status |
Supported | |
Supported | |
Supported | |
Transport | stdio |
Python | 3.10+ |
Startup
When the server starts, it logs its configuration:
open-greenhouse-mcp v0.4.0
Profile: recruiter | Tools: 127 | Writes: recruiter-safe | APIs: harvest, ingestionWhat's Included
Screening & sourcing tools — 6 tools for candidate screening, resume search with boolean keywords, daily digest, and location detection
Recruiter workflow tools — 13 composite tools for pipeline views, analytics, search, and bulk operations
Harvest API coverage — 148 tools across candidates, applications, jobs, offers, interviews, and more
Job Board API — 13 tools for public job listings and application submission
Optional webhooks and ingestion — 14 tools for event-driven workflows and partner integrations
Reference
Screening & Sourcing Tools
Tools for candidate evaluation and proactive talent search.
Tool | What it does |
| Complete screening package — profile, resume text, location, screening answers, job description, history |
| Applications since a date, grouped by job — the daily recruiter digest |
| Search resume text across pipelines with boolean keywords (required/preferred/exclude) |
| Search pipelines by structured fields — title, company, education, experience, tags |
| Database-wide candidate search by structured fields with date bounds |
| Batch-fetch and extract resume text for multiple candidates |
Composite Tools
High-level tools that combine multiple API calls into single operations.
Tool | What it does |
| Full pipeline view — candidates grouped by stage with names and days-in-stage |
| Find stale applications and interviews missing scorecards |
| Applications with no activity for N days, sorted by stalest |
| Conversion rates, hire/rejection rates, time-in-stage per stage |
| Which candidate sources produce the best hire rates |
| Average, median, min, max days from application to hire |
| Reject multiple applications in one call with rate-limit handling |
| Tag multiple candidates in one call |
| Advance multiple applications to next stage |
| Find candidates by first or last name |
| Look up a candidate by exact email |
| Download and return a candidate's most recent resume |
| Download any Greenhouse attachment by URL |
Profile Details
Recruiter includes all read tools, all screening/sourcing tools, all composite workflows, and recruiter-safe writes: reject, advance, hire, move, tag, notes, attachments, interviews, prospects, and bulk operations. It excludes job creation, user management, custom field configuration, candidate deletion, and webhook management.
Read-only skips all write operations. GREENHOUSE_READ_ONLY=true also works as a shorthand.
Configuration
Variable | Required | Description |
| Yes* | Harvest API key |
| Yes* | Job board URL slug. *At least one required |
| No |
|
| No | Greenhouse user ID for write audit trail |
| No |
|
| No | Log file path (defaults to stderr) |
| No | Tool-result size budget in bytes (default |
| No | Diagnostics file path (defaults beside Claude's logs) |
| No | Set |
Logging
Structured JSON logging for observability. Set GREENHOUSE_LOG_LEVEL=info to enable:
{"ts": "2026-04-14T12:31:58", "level": "info", "event": "api_call", "method": "GET", "url": "...", "status": 200, "latency_ms": 245.0}More Documentation
API Reference — Full tool breakdown by category
Usage Examples — Real conversations with full output
Advanced Setup — Webhook receiver, ingestion API, board-token mode
Development — Contributing, testing, project structure
Changelog
Current version: 0.5.0. Full detail for every release lives in CHANGELOG.md; this is the short version.
0.5.0 — reliability and error reporting
Aimed at deployments where the people using the tools are recruiters, not engineers, so a failure has to be self-explanatory and reportable.
Result-size shaping — results are measured and kept within a size budget (60KB default,
GREENHOUSE_MAX_RESULT_BYTESto override). A 500-job/jobspage runs to ~1.1MB and clients reject an oversized tool result outright, so the user saw a bare failure instead of an answer. Shaping degrades lazily: untouched if it already fits, then field projection, then text clamping, then dropping rows — attachingreturned/total_foundand a note telling the model to narrow by a real filter or walk pages, rather than telling the user about flags. Composite tools callinglist_*internally still get complete data.User-relayable errors — every failure carries a plain-English
user_message, asupport_codelikeGH403-0730-1421-7F2Dthe user can paste into a support request, anduser_can_resolveto separate "check the spelling" from "escalate, you cannot fix this".Always-on diagnostics file — notable events append to a JSON-lines file at a fixed path, so support is "send me this file" instead of asking a recruiter to reproduce with logging turned up.
GREENHOUSE_DIAGNOSTICS=offto disable.Default profile is now
recruiter, notfull— an unset or unrecognisedGREENHOUSE_TOOL_PROFILEused to register every tool with writes enabled, including destructive ones. Explicit values, includingfull, are unchanged.Fixed: 400 and 409 responses were treated as success data — only an enumerated set of statuses became errors, so a rejected filter value came back looking like a real record. Any status >= 400 is now an error.
0.4.0 — screening and sourcing
screen_candidate, fetch_new_applications, search_pipeline_candidates,
scan_all_candidates, batch_read_resumes, and scan_pipeline_resumes, plus
server-side PDF/DOCX resume text extraction and a 5-step location detection
cascade.
0.3.0 — profiles and logging
Tool profiles via GREENHOUSE_TOOL_PROFILE (full / recruiter / read-only) and
structured JSON logging with per-call method, status, and latency.
0.2.1 — packaging
PyPI metadata: keywords, classifiers, and project URLs.
0.2.0 — composite tools
13 composite tools for recruiter workflows.
0.1.0 — initial release
Harvest, Job Board, and Ingestion API coverage.
Relationship to upstream
This project began as a fork of
benmonopoli/open-greenhouse-mcp
(MIT, Copyright © 2026 Ben Monopoli), which remains the origin of the great majority
of this code. The LICENSE file is unchanged and continues to carry that notice.
Changes made here, released as 0.5.0:
Result-size shaping, so a large tool result is trimmed to fit rather than rejected
User-relayable error messages carrying a support code a non-technical user can pass on
An always-on diagnostics file, so support does not depend on reproducing a failure
A curated
assistanttool profile, and a safe default profile instead offullA fix for error statuses being treated as success data
An upper bound on
mcp, without which a clean install resolves 2.0.0 and the package cannot be imported at allA release workflow producing a cross-platform Claude Desktop bundle
To pull in future upstream work:
git remote add upstream https://github.com/benmonopoli/open-greenhouse-mcp.git
git fetch upstream && git merge upstream/mainFeedback
Bugs and features: Open an issue
Questions: Start a discussion
Security: See SECURITY.md
Contributing: See CONTRIBUTING.md
License
MIT License -- Ben Monopoli. See LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA server implementation that enables interaction with Greenhouse's recruitment and applicant tracking system through Model Context Protocol, providing tools for job listings, candidate management, application filtering, and stage transitions.Last updated1
- Alicense-qualityDmaintenanceThis project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our free CData MCP Server for Greenhouse (beta): https://www.cdata.com/download/download.aspx?sku=PGZK-V&type=betaLast updatedMIT
- Flicense-qualityDmaintenanceMCP server for candidate scoring. Post a resume and job description, get back structured scores across skills match, experience, industry background, and education — plus strengths and gaps grounded in the actual text. Hosted API at recruit api .app or self-host on Railway.Last updated
- AlicenseBqualityDmaintenanceProduction-ready MCP server for Greenhouse ATS with 175 tools for recruiting teams — manage candidates, applications, jobs, interviews, and hiring pipelines. Role-based profiles (full/recruiter/read-only), composite workflow tools for pipeline views, analytics, candidate search, and bulk operations.Last updated1005MIT
Related MCP Connectors
Managed LinkedIn MCP server for AI agents: search, connect, message and enrich on accounts you own.
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
A paid remote MCP for CLI tool MCP, built to return verdicts, receipts, usage logs, and audit-ready
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Comradery64/open-greenhouse-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server