mcp-teamtailor

by crunchloop

5 stars
270 downloads
Not rated
GitHub

About

The MCP Teamtailor is a Model Context Protocol (MCP) server that provides a simple integration with the [teamtailor api](https://docs.teamtailor.com/).

Details

Author
crunchloop
GitHub stars
5
Downloads
270
Categories
Other

- List candidates with optional filters and pagination
- Get a single candidate by ID
- No additional dependencies required
- Lightweight, stdio-based transport

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name mcp-teamtailor
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure the server in your MCP client (e.g., Claude Desktop) with the command npx -y @crunchloop/mcp-teamtailor and set environment variables TEAMTAILOR_URL (e.g., https://api.teamtailor.com/v1) and TEAMTAILOR_API_KEY. Then use the provided tools to list, filter, or retrieve candidates.

teamtailor_list_candidates

List and filter candidates.

teamtailor_get_candidate

Get a single candidate by their id.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp-teamtailor": {
            "teamtailor": {
                "command": "npx",
                "args": [
                    "-y",
                    "@crunchloop/mcp-teamtailor"
                ],
                "env": {
                    "TEAMTAILOR_URL": "https://api.teamtailor.com/v1",
                    "TEAMTAILOR_API_KEY": "XXXX"
                }
            }
        }
    }
}

McpServers

{
    "teamtailor": {
        "command": "npx",
        "args": [
            "-y",
            "@crunchloop/mcp-teamtailor"
        ],
        "env": {
            "TEAMTAILOR_URL": "https://api.teamtailor.com/v1",
            "TEAMTAILOR_API_KEY": "XXXX"
        }
    }
}

mcp-teamtailor

The MCP Teamtailor is a Model Context Protocol (MCP) server that provides a simple integration with the teamtailor api.

Dependencies

No other dependencies are required to use the MCP Teamtailor server.

Usage

MCP servers are configured differently depending on the client that you are using. For reference, this is how you would configure it using Claude Desktop.

{
  "mcpServers": {
    "teamtailor": {
      "command": "npx",
      "args": [
        "-y",
        "@crunchloop/mcp-teamtailor"
      ],
      "env": {
        "TEAMTAILOR_URL": "https://api.teamtailor.com/v1",
        "TEAMTAILOR_API_KEY": "XXXX"
      }
    }
  }
}

MCP Transport

At the moment, only stdio transport has been implemented.

Tools

- teamtailor_list_candidates - List and filter candidates.
- pageSize: The size of the page response (string, optional)
- page: The page number to retrieve (string, optional)
- filter.createdAfter: Filter candidates created after a specific date (string, optional)
- filter.createdBefore: Filter candidates created before a specific date (string, optional)
- filter.updatedAfter: Filter candidates updated after a specific date (string, optional)
- filter.updatedBefore: Filter candidates updated before a specific date (string, optional)

- teamtailor_get_candidate - Get a single candidate by their id.
- candidateId: The id of the candidate to retrieve (number, required)

License

Released under the MIT License. See the LICENSE file for further details.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.