Recruiting platform
## Greenhouse MCP Server: Recruiting Platform The **Greenhouse MCP Server** integrates Greenhouse recruiting platform into Google Antigravity, enabling AI-assisted candidate management, interview scheduling, and hiring workflow automation. ### Why Greenhouse MCP? - **Candidate Tracking**: Manage candidates through the entire hiring pipeline - **Interview Management**: Schedule and coordinate interviews efficiently - **Job Postings**: Create and manage job listings across channels - **Hiring Analytics**: Track recruiting metrics and pipeline health - **Team Collaboration**: Coordinate hiring decisions with structured feedback ### Key Features #### 1. Candidate Management ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show candidates in the interview stage for the Senior Engineer role" }] ) ``` #### 2. Interview Scheduling ```python # Schedule interviews response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find available times for panel interview with the engineering team" }] ) ``` #### 3. Job Management ```python # Manage jobs response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List open positions and their application counts by stage" }] ) ``` #### 4. Recruiting Analytics ```python # View metrics response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show time-to-hire metrics and pipeline conversion rates" }] ) ``` ### Configuration ```json { "mcpServers": { "greenhouse": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-greenhouse"], "env": { "GREENHOUSE_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Recruiting Operations**: Manage the full candidate lifecycle efficiently. **Interview Coordination**: Streamline interview scheduling and feedback. **Hiring Analytics**: Track and optimize recruiting performance. **Team Hiring**: Coordinate hiring decisions across teams. The Greenhouse MCP Server brings recruiting excellence into your workflow.
{
"mcpServers": {
"greenhouse": {
"mcpServers": {
"greenhouse": {
"env": {
"GREENHOUSE_API_KEY": "your-api-key"
},
"args": [
"-y",
"greenhouse-mcp-server"
],
"command": "npx"
}
}
}
}
}