Didlogic MCP 服务器
Didlogic API 的模型上下文协议 (MCP) 服务器实现。该服务器允许大型语言模型 (LLM) 通过标准化接口与 Didlogic 服务进行交互。
特征
- 通过 MCP 工具完全访问 Didlogic API
- 常见操作的专门提示
- 余额管理工具
- SIP账户(sipfriends)管理
- IP限制管理
- 采购管理
- 访问通话记录
- 交易历史记录访问
安装
使用 uv(推荐)
使用uv
时无需特殊安装。我们将使用uvx
直接运行didlogic_mcp 。
使用 PIP
或者,您可以通过 pip 安装didlogic_mcp
:
安装后,您可以使用以下命令将其作为脚本运行:
DIDLOGIC_API_KEY=YOUR_DIDLOGIC_KEY python -m didlogic_mcp
配置
为 Claude.app 配置
添加到您的 Claude 设置:
使用 uvx
"mcpServers": {
"didlogic": {
"command": "uvx",
"args": ["didlogic_mcp"],
"env": {
"DIDLOGIC_API_KEY": "YOUR_DIDLOGIC_KEY"
}
}
}
使用 pip 安装
"mcpServers": {
"didlogic": {
"command": "python",
"args": ["-m", "didlogic_mcp"],
"env": {
"DIDLOGIC_API_KEY": "YOUR_DIDLOGIC_KEY"
}
}
}
执照
麻省理工学院