thinkchainai/agentinterviews_mcp
简介
核心亮点
- 在对话界面直接创建和调度 AI 面试官
- 实现定性调研的大规模自动化执行
- 打通调研项目管理与访谈数据分析链路
- 将外部调研能力无缝集成至 AI 助手
完整文档
Agent Interviews MCP
<p align="center">
<a href="https://agentinterviews.com">
<img src="https://docs.agentinterviews.com/img/agent-interviews-logo-zip-file/svg/logo-no-background.svg" alt="Agent Interviews Logo" width="400">
</a>
</p>

> 通过 Model Context Protocol (MCP) 直接在 Claude 和 Cursor 中访问您的 Agent Interviews 数据
什么是 Agent Interviews?
Agent Interviews 是一个前沿的 AI 面试即服务(interview-as-a-service)平台,旨在帮助公司优化其技术评估流程。我们的平台允许您:
- 创建针对特定角色和技能定制的 AI 面试官
- 大规模开展一致且低偏见的技术面试
- 收集关于候选人表现的结构化数据
- 在保持高招聘标准的同时节省工程时间
通过 Agent Interviews,您可以部署可定制的 AI 面试官,通过自然对话评估候选人,提供详细报告,并与您现有的招聘工作流集成。
概览
Agent Interviews MCP server 为 AI 助手提供了一种标准化方式,使其能够使用 Model Context Protocol (MCP) 访问您的面试数据、报告和转录文本。此集成允许 Claude、Cursor 以及其他兼容 MCP 的 AI 助手与您的 Agent Interviews 账户无缝交互。
功能特性- ✅ Secure API Access: 使用 API key 连接到您的 Agent Interviews 账户
- ✅ Prefixed Tools: 所有工具均使用
agentinterviews_前缀,以避免与其他 MCP 冲突
- ✅ Comprehensive Functionality: 访问 interviews、transcripts、reports、projects 等
- ✅ Intuitive Queries: 使用自然语言提问,由 AI 决定调用合适的工具
Documentation
如需详细的安装指南和使用说明,请访问我们的官方文档:
Quick Start
Prerequisites
- 具有 API 访问权限的 Agent Interviews 账户
- 您的 Agent Interviews API key
- 兼容 MCP 的客户端(Claude Desktop, Cursor 等)
Cursor Setupjson{
"mcpServers": {
"AgentInterviews": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.agentinterviews.com/mcp",
"--header",
"Authorization:${API_KEY}"
],
"env": {
"API_KEY": "Api-Key YOUR_API_KEY_HERE"
}
}
}
}
### Claude Desktop 设置
{
"mcpServers": {
"AgentInterviews": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.agentinterviews.com/mcp",
"--header",
"Authorization:${API_KEY}"
],
"env": {
"API_KEY": "Api-Key YOUR_API_KEY_HERE"
}
}
}
}编辑您的 Claude Desktop 配置文件(可通过 Claude 菜单 → Settings → Developer → Edit Config 访问):
{
"mcpServers": {
"agentinterviews": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://api.agentinterviews.com/mcp",
"--header",
"Authorization:${API_KEY}"
],
"env": {
"API_KEY": "Api-Key YOUR_API_KEY_HERE"
}
}
}
}配置完成后,您可以询问如下问题:
- "Show me the status of my recent interviews"
- "Get the transcript from my last interview with candidate John Smith"
- "What projects do I have available?"
- "Show me details about the 'Senior Developer' interviewer"
可用工具
我们的 MCP server 提供了带有 agentinterviews_ 前缀的工具。部分关键工具包括:
agentinterviews_list_projects: 列出所有项目
agentinterviews_get_interview: 获取特定面试的详情
agentinterviews_list_interviewers: 列出所有面试官
agentinterviews_get_transcript: 获取面试转录文本
安全性
Agent Interviews MCP server 需要您的 API key 进行身份验证。该 key 用于安全地访问您的账户数据。请勿分享您的 API key 或将其包含在公共仓库中。
支持
如果您遇到任何问题或有疑问:
- 查看我们的 documentation
- 在本仓库中提交 issue
许可证
本项目采用 MIT License 许可证 - 详情请参阅 LICENSE 文件。