Native Hiring Tools for Claude Desktop
Connect the HireSquire Model Context Protocol (MCP) server to instantly grant your AI assistant the ability to screen resumes, score candidates, and schedule interviews.
npx -y hiresquire-cli mcp
Why Use the HireSquire MCP Server?
Zero Custom Code Setup
No SDKs or manual API integrations required. Just add the command to your MCP config, and Claude automatically discovers all available hiring tools and schemas.
Natural Language Command
Just tell Claude: "Screen the resumes in this folder against a Senior Developer role." The MCP server handles the file reading, API requests, and JSON parsing entirely behind the scenes.
Agent Spending Limits
Give your local assistant an Agent API Key with a strict daily spend limit. If Claude tries to screen 10,000 files by mistake, it will be safely blocked.
Available MCP Tools
The HireSquire MCP server exposes a rich set of JSON-RPC tools for any compatible client to consume.
-
create_screening -
get_screening_status -
get_results -
generate_email
// claude_desktop_config.json
{
"mcpServers": {
"hiresquire": {
"command": "npx",
"args": [
"-y",
"hiresquire-cli",
"mcp"
],
"env": {
"HIRESQUIRE_API_TOKEN": "hs_your_agent_key_here"
}
}
}
}