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
6 changes: 5 additions & 1 deletion packages/data-provider/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,11 @@ export type ToolApprovalMode = z.infer<typeof toolApprovalModeSchema>;
* just describes the surface.
*
* Conventions:
* - All list entries are matched as globs (`*`). Use `mcp:server:*` to scope
* - All list entries are matched as globs (`*`). MCP tool keys are
* `${rawToolName}${Constants.mcp_delimiter}${serverName}` (e.g.
* `create_issue_mcp_github`; the server segment is the `normalizeServerName()`
* form, and a raw tool name may itself contain the delimiter), so use
* `*${Constants.mcp_delimiter}<serverName>` (i.e. `*_mcp_<serverName>`) to scope
* a rule to every tool from a single MCP server.
* - `deny` always wins, including under `bypass`.
* - `enabled: false` is a LibreChat-only kill switch that disables the entire
Expand Down