这是一个 Model Context Protocol (MCP) 服务器,提供对 WeKnora 知识管理 API 的访问。
pip install -r requirements.txt
# Linux/macOS
export WEKNORA_BASE_URL="http://localhost:8080/api/v1"
export WEKNORA_API_KEY="your_api_key_here"
# Windows PowerShell
$env:WEKNORA_BASE_URL="http://localhost:8080/api/v1"
$env:WEKNORA_API_KEY="your_api_key_here"
# Windows CMD
set WEKNORA_BASE_URL=http://localhost:8080/api/v1
set WEKNORA_API_KEY=your_api_key_here
推荐方式 - 使用主入口点:
python main.py
其他运行方式:
# 使用原始启动脚本
python run_server.py
# 使用便捷脚本
python run.py
# 直接运行服务器模块
python weknora_mcp_server.py
# 作为 Python 模块运行
python -m weknora_mcp_server
python main.py --help # 显示帮助信息
python main.py --check-only # 仅检查环境配置
python main.py --verbose # 启用详细日志
python main.py --version # 显示版本信息
pip install -e .
安装后可以使用命令行工具:
weknora-mcp-server
# 或
weknora-server
pip install .
# 使用 setuptools
python setup.py sdist bdist_wheel
# 使用现代构建工具
pip install build
python -m build
运行测试脚本验证模组是否正常工作:
python test_module.py
该 MCP 服务器提供以下工具:
create_tenant - 创建新租户list_tenants - 列出所有租户create_knowledge_base - 创建知识库list_knowledge_bases - 列出知识库get_knowledge_base - 获取知识库详情delete_knowledge_base - 删除知识库hybrid_search - 混合搜索create_knowledge_from_url - 从 URL 创建知识list_knowledge - 列出知识get_knowledge - 获取知识详情delete_knowledge - 删除知识create_model - 创建模型list_models - 列出模型get_model - 获取模型详情create_session - 创建聊天会话get_session - 获取会话详情list_sessions - 列出会话delete_session - 删除会话chat - 发送聊天消息list_chunks - 列出知识块delete_chunk - 删除知识块如果遇到导入错误,请确保:
mcp.py 作为文件名)