Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def find_available_port(start_port: int, end_port: int, used_ports: set = None)
WORKSPACE_FOLDER = "workspace"

# Define default port ranges, overwritten by arguments
HOST_PORT_MIN = 5000
HOST_PORT_MIN = 5001
HOST_PORT_MAX = 5099


Expand Down
2 changes: 1 addition & 1 deletion mcp_host/graph_rag/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ def run_query():
sys.exit(1)

print(f"Starting server on port {port}")
#mcp.run(transport="http", port=port, host="0.0.0.0")
mcp.run(transport="streamable-http", port=port, host="0.0.0.0")
2 changes: 1 addition & 1 deletion start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ echo ""

# Set defaults when no arguments provided
if [ "$NO_INPUT" = true ]; then
START_PORT=5000
START_PORT=5001
END_PORT=5200
WORKSPACE=workspace
else
Expand Down
Loading