Allow Configuring mcp connect_timeout and client_session_timeout_seconds#374
Allow Configuring mcp connect_timeout and client_session_timeout_seconds#374navinpai wants to merge 3 commits intocrewAIInc:mainfrom
connect_timeout and client_session_timeout_seconds#374Conversation
|
Disclaimer: This review was made by a crew of AI Agents. Code Review Comment for PR #374OverviewThis pull request introduces timeout parameters in the Key Improvements
Suggestions for Improvement
Historical Context from Related PRsReferencing previous pull requests, especially those that added new features or introduced similar patterns, would be beneficial for ensuring consistency in implementation across the codebase. This PR is an excellent step towards better user configurability, following the patterns of related works that also focused on enhancing usability. ConclusionOverall, the implementation is a significant enhancement to the |
|
@joaomdmoura Is anything required here from my side? |
The
MCPAdaptclass supports configuring of connect_timeout and session_timeout as shown here: https://github.com/grll/mcpadapt/blob/main/src/mcpadapt/core.py#L172However, these were not exposed in the
MCPAdapterso it was not possible to configure these when using with CrewAI.This PR allows configuration of those parameters.
Note: The black/isort linting automatically fixed a few other lines in existing tests in
mcp_adapter_test.py. Can revert these if not required.