Conversation
Kludex
commented
Jul 25, 2025
Comment on lines
+132
to
+148
| debug: bool = False, | ||
| log_level: Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] = "INFO", | ||
| host: str = "127.0.0.1", | ||
| port: int = 8000, | ||
| mount_path: str = "/", | ||
| sse_path: str = "/sse", | ||
| message_path: str = "/messages/", | ||
| streamable_http_path: str = "/mcp", | ||
| json_response: bool = False, | ||
| stateless_http: bool = False, | ||
| warn_on_duplicate_resources: bool = True, | ||
| warn_on_duplicate_tools: bool = True, | ||
| warn_on_duplicate_prompts: bool = True, | ||
| dependencies: Collection[str] = (), | ||
| lifespan: Callable[[FastMCP[LifespanResultT]], AbstractAsyncContextManager[LifespanResultT]] | None = None, | ||
| auth: AuthSettings | None = None, | ||
| transport_security: TransportSecuritySettings | None = None, |
Member
Author
There was a problem hiding this comment.
This is the main change. The rest is just to comply with those types.
9 tasks
dsp-ant
reviewed
Jul 25, 2025
| port: int = 8000, | ||
| mount_path: str = "/", | ||
| sse_path: str = "/sse", | ||
| message_path: str = "/messages/", |
Member
There was a problem hiding this comment.
No description provided.