Fix FastMCP dependency pin

This commit is contained in:
george
2026-06-05 23:32:08 +01:00
parent 421b6f973a
commit 3caf47077b
3 changed files with 3 additions and 6 deletions
-3
View File
@@ -23,9 +23,6 @@ httpx==0.26.0
# HTTP client for WebUI (used to call docs-api from WebUI)
requests==2.31.0
# FastMCP for MCP server integration (also used by backend)
fastmcp==0.6.0
# YAML parser for sources configuration
PyYAML==6.0.1
+2 -2
View File
@@ -1,5 +1,5 @@
# MCP Server Dependencies
fastmcp==0.6.0
fastmcp==2.12.5
httpx==0.26.0
# For Qdrant vector store operations
@@ -18,4 +18,4 @@ pypdf==5.0.0
python-dotenv==1.0.0
# YAML parser for sources configuration
PyYAML==6.0.1
PyYAML==6.0.1
+1 -1
View File
@@ -330,7 +330,7 @@ if __name__ == "__main__":
print(" - sync_sources(override=false)")
if hasattr(mcp, "run"):
mcp.run(transport="streamable-http", host=host, port=port)
mcp.run(transport="http", host=host, port=port)
else:
import uvicorn