Jeremiah Lowin
Update src/fastmcp/utilities/http.py
6b8482e unverified
Raw
History Blame Contribute Delete
245 Bytes
import socket
def find_available_port() -> int:
"""Find an available port by letting the OS assign one."""
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind(("127.0.0.1", 0))
return s.getsockname()[1]