经 AI Skill Hub 精选评估,MCP工具:FreeScout帮助desk票务管理 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
MCP工具:FreeScout帮助desk票务管理 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
MCP工具:FreeScout帮助desk票务管理 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/verygoodplugins/mcp-freescout
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"mcp---freescout--desk----": {
"command": "npx",
"args": ["-y", "mcp-freescout"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 MCP工具:FreeScout帮助desk票务管理 执行以下任务... Claude: [自动调用 MCP工具:FreeScout帮助desk票务管理 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"mcp___freescout__desk____": {
"command": "npx",
"args": ["-y", "mcp-freescout"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
An MCP (Model Context Protocol) server for FreeScout helpdesk ticket management. This server provides tools to interact with FreeScout tickets, analyze issues, and manage customer responses.
McpServer and registerTool() patternsBreaking Changes:
McpServer class with structured outputsNew Features:
assignee, updatedSince, createdSince, page, pageSizeSee CHANGELOG.md for migration guide.
"7d", "24h", "30m" instead of calculating ISO datespage and pageSize parameters for large result setsstructuredContent for better integration| Variable | Description | Example |
|---|---|---|
FREESCOUT_URL | Your FreeScout instance URL | https://support.example.com |
FREESCOUT_API_KEY | FreeScout API key | your-api-key-here |
npm run build
1. Log into your FreeScout instance as an administrator 2. Navigate to Manage → API Keys 3. Create a new API key with appropriate permissions: - View conversations - Update conversations - Create threads (for notes)
The easiest way to use this MCP server is with npx:
Run the server directly:
npm start
Or in development mode with auto-reload:
npm run dev
For more control, you can specify additional environment variables:
{
"mcpServers": {
"freescout": {
"command": "npx",
"args": ["@verygoodplugins/mcp-freescout@latest"],
"env": {
"FREESCOUT_URL": "https://support.example.com",
"FREESCOUT_API_KEY": "your-api-key",
"FREESCOUT_DEFAULT_USER_ID": "2"
}
}
}
}
| Variable | Description | Default |
|---|---|---|
FREESCOUT_DEFAULT_USER_ID | Default user ID for assignments | 1 |
// 1. Analyze the ticket to understand the issue
const analysis = await mcp.callTool('freescout_analyze_ticket', {
ticket: '12345',
});
// 2. Get ticket context for personalized reply
const context = await mcp.callTool('freescout_get_ticket_context', {
ticket: '12345',
});
// 3. Create a draft reply directly in FreeScout
await mcp.callTool('freescout_create_draft_reply', {
ticket: '12345',
replyText: `Hi ${context.customer.name},
Thank you for reaching out! Based on my analysis, I can see that ${analysis.issueDescription}.
Here's what I found:
1. **Issue Type**: ${analysis.isBug ? 'Bug' : 'Configuration/Feature Request'}
2. **Root Cause**: ${analysis.rootCause || 'Under investigation'}
I'll look into this and get back to you shortly with a solution.
Best regards,
[Your name]`,
cc: ['billing@example.com'],
});
// 4. Update ticket status and assignment
await mcp.callTool('freescout_update_ticket', {
ticket: '12345',
status: 'active',
assignTo: 1,
});
// 5. Add an internal note with findings
await mcp.callTool('freescout_add_note', {
ticket: '12345',
note: `Analysis complete:
- Is Bug: ${analysis.isBug}
- Third-party Issue: ${analysis.isThirdPartyIssue}
- Root Cause: ${analysis.rootCause}`,
});
// 1. Get ticket context for personalized reply
const context = await mcp.callTool('freescout_get_ticket_context', {
ticket: '34811',
});
// 2. Create draft reply in FreeScout (LLM crafts the content)
await mcp.callTool('freescout_create_draft_reply', {
ticket: '34811',
replyText: `Hi ${context.customer.name},
Thank you for reporting the HighLevel OAuth authorization issue! Your experience with the EngageBay LiveChat plugin conflict has been really valuable.
Based on what we learned from your case, I've added a new plugin conflict detection system to WP Fusion. In the next update (v3.46.7), users will see:
🔍 **Plugin Conflict Detection**
- Automatic detection of known conflicting plugins
- Warning messages before HighLevel authorization
- Clear guidance when conflicts are detected
This should prevent the confusion you experienced and help other users avoid similar issues.
The update should be available within the next few weeks. Thanks for your patience and for helping us improve the plugin!
Best regards,
Jack`,
to: ['primary@example.com'],
cc: ['teammate@example.com'],
});
// The draft is now saved in FreeScout and can be reviewed/edited before sending
1. FreeScout API Client (freescout-api.ts) - Handles all API communication with FreeScout - Manages authentication and request formatting - Provides ticket parsing utilities
2. Ticket Analyzer (ticket-analyzer.ts) - Intelligent ticket content analysis - Issue classification (bug vs feature vs configuration) - Code snippet and error extraction - Root cause determination
3. MCP Server (index.ts) - Tool registration and request handling - Integration with Git for worktree management - Response formatting and error handling
If you prefer to install and run the server locally:
git clone https://github.com/verygoodplugins/mcp-freescout.git
cd mcp-freescout
npm install
npm run build
{
"mcpServers": {
"freescout": {
"command": "node",
"args": ["/path/to/mcp-freescout/dist/index.js"],
"env": {
"FREESCOUT_URL": "https://your-freescout-domain.com",
"FREESCOUT_API_KEY": "your-api-key-here"
}
}
}
}
FreeScout MCP 服务器是一款用于 FreeScout 帮助台票务管理的 MCP 服务器。该服务器提供了与 FreeScout 票务进行交互、分析问题以及管理客户回复的工具。
FreeScout MCP 服务器的功能包括:票务管理、智能分析、草稿回复、先进搜索以及类型安全等。
环境依赖与系统要求:Node.js 18 或更高版本、FreeScout 实例及其 API 访问权限。
安装步骤:使用 npm 运行 `npm run build` 构建生产环境,或者使用 `npm start` 或 `npm run dev` 运行开发环境。
使用教程:使用 `npx` 运行 MCP 服务器,或者直接运行 `npm start` 或 `npm run dev` 运行开发环境。
配置说明:可选环境变量包括 `FREESCOUT_DEFAULT_USER_ID` 等。
工作流程:包括完整票务响应工作流程和草稿回复工作流程等
常见问题:Troubleshooting
该项目是一个开源的MCP工具,帮助FreeScout帮助desk票务管理,虽然star数较少,但代码质量较高,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ GPL 3.0 — 强 Copyleft,衍生作品须开源,含专利保护条款,不可闭源使用。
AI Skill Hub 点评:MCP工具:FreeScout帮助desk票务管理 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | mcp-freescout |
| 原始描述 | 开源MCP工具:An MCP (Model Context Protocol) server for FreeScout helpdesk ticket management 。⭐19 · TypeScript |
| Topics | mcptypescript |
| GitHub | https://github.com/verygoodplugins/mcp-freescout |
| License | GPL-3.0 |
| 语言 | TypeScript |
收录时间:2026-06-14 · 更新时间:2026-06-16 · License:GPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端