diff options
| author | Jacob MacDonald <[email protected]> | 2025-08-08 16:29:06 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-08 23:29:06 +0000 |
| commit | f35921a77171d011d244cba1b2da0531f9749332 (patch) | |
| tree | 8b14be742c8fcf94b56cbe6eedf6ebeb3febd4be /packages/core/src/tools/tool-registry.ts | |
| parent | c03ae4377729fb993426e8535cb041f8014f7b3b (diff) | |
Add MCP Roots support (#5856)
Co-authored-by: Jacob Richman <[email protected]>
Diffstat (limited to 'packages/core/src/tools/tool-registry.ts')
| -rw-r--r-- | packages/core/src/tools/tool-registry.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/core/src/tools/tool-registry.ts b/packages/core/src/tools/tool-registry.ts index c77fab8c..70226052 100644 --- a/packages/core/src/tools/tool-registry.ts +++ b/packages/core/src/tools/tool-registry.ts @@ -178,6 +178,7 @@ export class ToolRegistry { this, this.config.getPromptRegistry(), this.config.getDebugMode(), + this.config.getWorkspaceContext(), ); } @@ -199,6 +200,7 @@ export class ToolRegistry { this, this.config.getPromptRegistry(), this.config.getDebugMode(), + this.config.getWorkspaceContext(), ); } @@ -225,6 +227,7 @@ export class ToolRegistry { this, this.config.getPromptRegistry(), this.config.getDebugMode(), + this.config.getWorkspaceContext(), ); } } |
