We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389dc90 commit ea7a063Copy full SHA for ea7a063
src/mcp/server/fastmcp/server.py
@@ -89,7 +89,10 @@ class Settings(BaseSettings, Generic[LifespanResultT]):
89
# HTTP settings
90
host: str = "127.0.0.1"
91
port: int = 8000
92
- root_path: str = "" # root path, same with root_path in uvicorn config, for sse or streamable http
+
93
+ root_path: str = "" # Root path, same with root_path in uvicorn config.
94
+ # Used for SSE or streamable HTTP.
95
96
mount_path: str = "/" # Mount path (e.g. "/github", defaults to root path)
97
sse_path: str = "/sse"
98
message_path: str = "/messages/"
0 commit comments