Back to MCP directory
publicPublicdnsLocal runtime

mcp-teamtailor

MCP Teamtailor是一个与Teamtailor API集成的MCP服务端,提供候选人列表查询和详情获取功能。

article

README

🚀 MCP 团队定制器

MCP 团队定制器是一款模型上下文协议(MCP)服务器,它能与 团队定制器 API 实现简单集成,为用户提供便捷的使用体验。

🚀 快速开始

依赖项

使用 MCP 团队定制器服务器无需其他依赖项,使用起来十分便捷。

使用方法

根据使用的客户端不同,MCP 服务器的配置方式也会有所不同。以下是使用 Claude Desktop 配置的一个示例:

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

🔧 技术细节

MCP 传输协议

目前,仅实现了 stdio 传输协议。

📚 详细文档

工具

  • teamtailor_list_candidates - 列表和筛选候选人。 | 属性 | 详情 | |------|------| | pageSize | 每页的响应大小(字符串,可选) | | page | 要检索的页面编号(字符串,可选) | | filter.createdAfter | 筛选创建日期在指定时间之后的候选人(字符串,可选) | | filter.createdBefore | 筛选创建日期在指定时间之前的候选人(字符串,可选) | | filter.updatedAfter | 筛选更新日期在指定时间之后的候选人(字符串,可选) | | filter.updatedBefore | 筛选更新日期在指定时间之前的候选人(字符串,可选) |

  • teamtailor_get_candidate - 根据候选人的 ID 获取单个候选人。 | 属性 | 详情 | |------|------| | candidateId | 要检索的候选人的 ID(数字,必填) |

📄 许可证

本项目根据 MIT 许可证发布。有关详细信息,请参阅 LICENSE 文件。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client