The Loxo MCP Server implements the Model Context Protocol to interact with the Loxo recruitment platform API. It enables AI assistants to manage recruitment tasks including candidate sourcing, job management, activity scheduling, and call queue management.
To install the Loxo MCP Server, follow these steps:
# Clone the repository
git clone [repository-url]
cd loxo-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
Create your environment configuration file by copying the example:
cp .env.example .env
Edit the .env
file to include your Loxo credentials:
LOXO_API_KEY=your_api_key
LOXO_DOMAIN=app.loxo.co
LOXO_AGENCY_SLUG=your_agency_slug
LOXO_API_KEY
: Your Loxo API keyLOXO_AGENCY_SLUG
: Your agency's slug in LoxoLOXO_DOMAIN
: Optional - defaults to 'app.loxo.co'Once configured, you can start the server with:
npm start
The MCP server provides several categories of recruitment tools:
Get Activity Types
# Tool name: get-activity-types
# Returns a list of available activity types
Spark Search Activity Types
# Tool name: spark-search-activity-types
# Retrieves activity types from Spark Search
Get Today's Tasks
# Tool name: get-todays-tasks
# Fetches all tasks and scheduled activities for today
Schedule Activity
# Tool name: schedule-activity
# Schedules a future activity (call, meeting, etc.)
Log Activity
# Tool name: log-activity
# Logs an activity for a candidate or job
Get Call Queue
# Tool name: get-call-queue
# Returns the current call queue
Add to Call Queue
# Tool name: add-to-call-queue
# Adds a candidate or contact to the call queue
Search Candidates
# Tool name: search-candidates
# Searches for candidates in Loxo
Get Candidate Details
# Tool name: get-candidate
# Returns detailed information about a specific candidate
Add Note to Candidate
# Tool name: add-note
# Adds a note to a candidate record
Search Jobs
# Tool name: search-jobs
# Searches for jobs in Loxo
Get Job Details
# Tool name: get-job
# Returns detailed information about a specific job
Add Note to Job
# Tool name: add-note
# Adds a note to a job record
These tools can be called by AI assistants and other applications that implement the Model Context Protocol, enabling automation of common recruitment workflows within the Loxo platform.
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "loxo-mcp-server" '{"command":"npx","args":["loxo-mcp-server"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"loxo-mcp-server": {
"command": "npx",
"args": [
"loxo-mcp-server"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"loxo-mcp-server": {
"command": "npx",
"args": [
"loxo-mcp-server"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect