Skip to content
Open
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
10 changes: 5 additions & 5 deletions src/uipath_langchain/agent/tools/mcp/mcp_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ async def create_mcp_tools(
Returns empty list if config.is_enabled is False.

Behavior depends on config.dynamic_tools:
- none: Uses tool schemas from config.available_tools (default).
- schema: Lists tools from the MCP server via mcpClient, but only
includes tools whose names appear in config.available_tools.
- all: Lists all tools from the MCP server via mcpClient, ignoring
config.available_tools entirely.
- off: Uses tool schemas from config.available_tools (default).
- live schemas: Lists tools from the MCP server via mcpClient, but
only includes tools whose names appear in config.available_tools.
- auto discover: Lists all tools from the MCP server via mcpClient,
ignoring config.available_tools entirely.
"""

if config.is_enabled is False:
Expand Down
Loading