diff options
| author | Jordan Demeulenaere <[email protected]> | 2025-07-07 18:34:26 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-07 16:34:26 +0000 |
| commit | 355fb4ac676820ebcca76c985284798dc40ed653 (patch) | |
| tree | 467de15e37549974cbaaf8ebfe737b7086b4893e /packages/core/src/config/config.ts | |
| parent | aa8e5776eb491dffa4e539afdc75798bfc4a904d (diff) | |
Add excludeTools and includeTools to mcpServers config (#2976)
Diffstat (limited to 'packages/core/src/config/config.ts')
| -rw-r--r-- | packages/core/src/config/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 3bb5b85e..f2404bb0 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -84,6 +84,8 @@ export class MCPServerConfig { readonly trust?: boolean, // Metadata readonly description?: string, + readonly includeTools?: string[], + readonly excludeTools?: string[], ) {} } |
