π¦
Recruitcrm MCP
MCP server for Recruit CRM
0 installs
Trust: 55 β Fair
Devtools
Installation
npx recruitcrm-mcpAsk AI about Recruitcrm MCP
Powered by Claude Β· Grounded in docs
I know everything about Recruitcrm MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Recruit CRM MCP
MCP (Model Context Protocol) server for Recruit CRM, enabling AI assistants to search candidates, view jobs, and manage recruiting workflows.
Quick Start
One-Click Install (recommended)
macOS / Linux β run in Terminal:
curl -LsSf https://raw.githubusercontent.com/ebragas/recruitcrm-mcp/main/install.sh | bash
Windows β run in PowerShell:
powershell -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/ebragas/recruitcrm-mcp/main/install.ps1 | iex"
The installer will:
- Install
uvif you don't have it - Prompt for your Recruit CRM API key
- Back up your existing Claude Desktop config
- Add the Recruit CRM MCP server entry
Want to review the script first?
macOS / Linux:
curl -LsSf https://raw.githubusercontent.com/ebragas/recruitcrm-mcp/main/install.sh -o install.sh
cat install.sh # review the script
bash install.sh
Windows:
Invoke-WebRequest -Uri https://raw.githubusercontent.com/ebragas/recruitcrm-mcp/main/install.ps1 -OutFile install.ps1
Get-Content install.ps1 # review the script
powershell -ExecutionPolicy Bypass -File .\install.ps1
Already have
uv? You can skip the bootstrap and run the installer directly:uvx --from recruit-crm-mcp recruit-crm-mcp-install
Manual Setup
If you prefer to configure manually, add to your claude_desktop_config.json:
{
"mcpServers": {
"recruit-crm": {
"command": "uvx",
"args": ["recruit-crm-mcp"],
"env": {
"RECRUIT_CRM_API_KEY": "your-api-key-here"
}
}
}
}
Development
uv sync # install dependencies
make test # run tests
make lint # run linter
make check # run lint + tests
Tools
| Tool | Description |
|---|---|
ping | Health check β verify the server is running and API key is configured |
search_candidates | Search candidates by query, email, city, or job title |
get_candidate | Get full profile details for a candidate by slug/ID |
list_jobs | List job requisitions |
search_jobs | Search jobs by status, name, city, country, or company |
get_job | Get full details for a job by slug/ID |
Resources
| Resource | Description |
|---|---|
recruitcrm://candidate/{id}/resume | Get resume URL for a candidate |
recruitcrm://job/{id}/description | Get full job description |
Configuration
Set the RECRUIT_CRM_API_KEY environment variable with your Recruit CRM API token.
