help-scout-mcp-server
by drewburchfield·★ 40·综合分 47
Help Scout 的 MCP 服务器,让 AI 代理搜索对话、线程和收件箱。
概述
一个 MCP 服务器,为 AI 助手提供直接访问 Help Scout 收件箱、对话、客户、组织和线程的权限。它使支持团队能够通过关键词、日期范围、状态或标签搜索工单,按姓名或电子邮件查找客户,探索组织,提取线程历史记录,并监控收件箱活动。该服务器实现 OAuth2 客户端凭据流程进行安全认证,并包含可选的 PII 遮蔽功能以满足合规要求。
试试问 AI
装完之后,这里有 6 个你可以让 AI 做的事:
什么时候选它
如果您已经在使用 Help Scout 进行客户支持,并希望 AI 代理直接搜索和分析对话而不需要切换上下文,请选择此服务器。
什么时候不要选它
如果您需要写入 Help Scout 数据(此服务器仅支持只读)或需要与消息删减选项冲突的合规标准,请不要选择此服务器。
此 server 暴露的工具
从 README 抽取出 12 个工具searchConversationsList recent tickets from Help Scout
comprehensiveConversationSearchFind conversations by keyword or complex criteria
structuredConversationFilterLook up a specific conversation by ticket number
advancedConversationSearchApply complex filters to conversation searches
listCustomersBrowse customers by name or criteria
searchCustomersByEmailFind a customer by exact email address
getCustomerRetrieve detailed information about a specific customer
getCustomerContactsPull customer contact channels and details
listOrganizationsBrowse organizations in Help Scout
getOrganizationRetrieve detailed information about a specific organization
getOrganizationMembersList customers within a specific organization
getConversationSummaryGet a quick overview of a conversation
可对比工具
安装
Claude Desktop(推荐)
- 从 [发布页面下载最新的
.mcpb文件](https://github.com/drewburchfield/help-scout-mcp-server/releases) - 双击安装(或拖入 Claude Desktop)
- 提示时输入您的 Help Scout 应用 ID 和应用密钥
VS Code / Cursor
在您的 MCP 客户端配置文件中(claude_desktop_config.json、.cursor/mcp.json):
{
"mcpServers": {
"helpscout": {
"command": "npx",
"args": ["help-scout-mcp-server"],
"env": {
"HELPSCOUT_APP_ID": "您的应用 ID",
"HELPSCOUT_APP_SECRET": "您的应用密钥"
}
}
}
}npm
npm install -g help-scout-mcp-server然后在您的 MCP 客户端中使用命令 help-scout-mcp-server 进行配置。
FAQ
- 此服务器使用什么认证方法?
- Help Scout 仅使用 OAuth2 客户端凭据流程。不支持个人访问令牌。
- 如何从 Help Scout 获取 API 凭据?
- 转到 Help Scout > My Apps > Create Private App,至少选择对收件箱、对话、客户和组织的读取权限,然后复制您的应用 ID 和应用密钥。
- 我可以将服务器限制到特定收件箱吗?
- 是的,设置 HELPSCOUT_DEFAULT_INBOX_ID 环境变量可将搜索限制到特定收件箱。
help-scout-mcp-server 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。