Loxo Recruitment MCP server

Integrates with Loxo's recruitment platform API to streamline hiring processes through automated candidate tracking, job matching, and task management.
Back to servers
Setup instructions
Provider
tbensonwest
Release date
Jan 08, 2025
Language
TypeScript

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.

Installation

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

Configuration

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

Required Environment Variables

  • LOXO_API_KEY: Your Loxo API key
  • LOXO_AGENCY_SLUG: Your agency's slug in Loxo
  • LOXO_DOMAIN: Optional - defaults to 'app.loxo.co'

Using the Server

Once configured, you can start the server with:

npm start

Available Tools

The MCP server provides several categories of recruitment tools:

Activity Management

  • 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
    

Call Queue Management

  • 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
    

Candidate Management

  • 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
    

Job Management

  • 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.

How to install this MCP server

For Claude Code

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.

For Cursor

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.

Adding an MCP server to Cursor globally

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"
            ]
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.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

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later