这是一个提供访问Gong API以获取通话录音和转录的Model Context Protocol (MCP)服务器。此服务器允许Claude通过标准化接口与Gong数据进行交互。
npm install
npm run build
构建容器:
docker build -t gong-mcp .
{
"command": "docker",
"args": [
"run",
"-it",
"--rm",
"gong-mcp"
],
"env": {
"GONG_ACCESS_KEY": "your_access_key_here",
"GONG_ACCESS_SECRET": "your_access_secret_here"
}
}
.env文件获取Gong通话列表,并可选日期范围过滤。
{
name: "list_calls",
description: "列出Gong通话,并可选日期范围过滤。返回包括ID、标题、开始/结束时间、参与者和持续时间的通话详情。",
inputSchema: {
type: "object",
properties: {
fromDateTime: {
type: "string",
description: "ISO格式的开始日期/时间(例如:2024-03-01T00:00:00Z)"
},
toDateTime: {
type: "string",
description: "ISO格式的结束日期/时间(例如:2024-03-31T23:59:59Z)"
}
}
}
}
获取指定通话ID的详细转录。
{
name: "retrieve_transcripts",
description: "获取指定通话ID的转录。返回包括发言者ID、主题和带时间戳句子的详细转录。",
inputSchema: {
type: "object",
properties: {
callIds: {
type: "array",
items: { type: "string" },
description: "要获取转录的Gong通话ID数组"
}
},
required: ["callIds"]
}
}
MIT许可证 - 查看LICENSE文件了解详情
git checkout -b feature/amazing-feature)git commit -m '添加一些精彩的功能')git push origin feature/amazing-feature)