Homerun ATS MCP Server
MCP server that connects AI agents to Homerun, an applicant tracking system. Enables AI-assisted candidate review: browse vacancies, inspect applications, and leave review notes.
README
Homerun ATS MCP Server
MCP server that connects AI agents to Homerun — an applicant tracking system. Enables AI-assisted candidate review: browse vacancies, inspect applications, and leave review notes.
Standalone server. No runtime dependency on the platform. Users add it like any remote MCP server.
Tools
| Tool | Description |
|---|---|
list_vacancies |
List job openings with optional status filter and pagination |
get_vacancy |
Get full vacancy details (description, stages, location, department) |
list_applications |
Search/filter applications by vacancy, stage, hired status, disqualification |
get_application |
Get full application details (candidate profile, notes, files, question answers) |
add_note |
Add a review note to an application |
Setup
Get a Homerun API key
Homerun App → Integrations → API Keys. Assign scopes:
vacancies:readjob-applications:readjob-application-notes:read(for notes in get_application)job-application-notes:write(for add_note)
API access requires the Homerun Plus plan.
Run locally
pnpm -F @softcery/mcp-homerun dev
Starts on http://localhost:8080. The MCP endpoint is /mcp.
Environment variables
| Variable | Default | Description |
|---|---|---|
PORT |
8080 |
Server port |
HOST |
0.0.0.0 |
Bind address |
SESSION_TIMEOUT_MS |
1800000 |
Session expiry (30 min) |
ALLOWED_HOSTS |
— | Comma-separated allowed Host header values (DNS rebinding protection) |
Connect
From the platform
Admin UI → Agent → Integrations → Add Server:
- URL:
https://<deployed-host>/mcp - API Key: your Homerun API key
From Claude Desktop
{
"mcpServers": {
"homerun": {
"url": "http://localhost:8080/mcp",
"headers": {
"Authorization": "Bearer <HOMERUN_API_KEY>"
}
}
}
}
From any MCP client
Send an initialize request to POST /mcp with your Homerun API key as a Bearer token in the Authorization header. The server creates a stateful session — subsequent requests use the mcp-session-id header.
Auth model
No server-level auth. The Bearer token from the client's Authorization header is used directly as the Homerun API key. Each user's key has its own rate limit (60 req/min).
Development
pnpm -F @softcery/mcp-homerun test # run tests
pnpm -F @softcery/mcp-homerun lint # tsc + oxlint + knip
pnpm -F @softcery/mcp-homerun build # production build
Docker
docker build -f mcp-servers/homerun/Dockerfile -t mcp-homerun .
docker run -p 8080:8080 mcp-homerun
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.