风暴 MCP(模型上下文协议)服务器是一个支持大语言模型(LLM)应用程序与 RAG 数据源及工具之间平滑交互的开源协议。通过实现 Anthropic 的 Model Context Protocol,可以在 Claude Desktop 等平台上使用。Sionic AI 的 风暴平台 基于 RAG 技术构建,该服务器可与 Sionic AI 的服务结合,为用户提供更多功能。通过此服务器,可以实现 LLM 与 RAG 数据之间的平滑交互,并支持多种工具和文件管理操作。
在 Claude Desktop 环境中启动 MCP 服务器,请按照以下步骤配置:
打开设置文件:
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
添加 MCP 服务器配置:
{
"mcpServers": {
"storm": {
"command": "sh",
"args": [
"/Users/sigridjineth/Desktop/work/storm-mcp-server/scripts/run.sh"
]
}
}
}
send_nonstream_chat
、list_agents
、list_buckets
、upload_document_by_file
等多种工具的定义与调用。在设置风暴 MCP 服务器之前,请确保您具备以下条件:
克隆仓库:
git clone https://github.com/your-repository.git
cd mcp-server
安装依赖项:
pip install -r requirements.txt
运行服务器:
python main.py
服务器可以使用 JSON 文件进行配置:
{
"mcp_servers": {
"storm": {
"command": "sh",
"args": [
"/Users/sigridjineth/Desktop/work/storm-mcp-server/scripts/run.sh"
]
}
}
}
常见问题可能包括连接错误、性能瓶颈和安全问题。有关详细的故障排除步骤,请参考 故障排除指南。
如需更多信息,请访问:
MCP 的架构分为以下三层:
文档中未提及相关内容。