diff options
| author | Allen Hutchison <[email protected]> | 2025-05-16 16:36:50 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-16 16:36:50 -0700 |
| commit | 1bdec55fe1c658069a45df0aa8e4923ba1954e41 (patch) | |
| tree | 32aa334cb0590f06830f52ed7c0d84e2d4ed7db3 /packages/server/src/config/config.ts | |
| parent | d9bd2b0e144560c8a82806bfb021a028c7cd43c9 (diff) | |
feat: Implement CLI and model memory management (#371)
Co-authored-by: N. Taylor Mullen <[email protected]>
Diffstat (limited to 'packages/server/src/config/config.ts')
| -rw-r--r-- | packages/server/src/config/config.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/server/src/config/config.ts b/packages/server/src/config/config.ts index 4221b71e..8b9648c4 100644 --- a/packages/server/src/config/config.ts +++ b/packages/server/src/config/config.ts @@ -20,6 +20,7 @@ import { WriteFileTool } from '../tools/write-file.js'; import { WebFetchTool } from '../tools/web-fetch.js'; import { ReadManyFilesTool } from '../tools/read-many-files.js'; import { BaseTool, ToolResult } from '../tools/tools.js'; +import { MemoryTool } from '../tools/memoryTool.js'; import { StdioServerParameters } from '@modelcontextprotocol/sdk/client/stdio.js'; export class Config { @@ -188,9 +189,10 @@ function createToolRegistry(config: Config): ToolRegistry { new GlobTool(targetDir), new EditTool(config), new WriteFileTool(targetDir), - new WebFetchTool(), // Note: WebFetchTool takes no arguments + new WebFetchTool(), new ReadManyFilesTool(targetDir), new ShellTool(config), + new MemoryTool(), ]; for (const tool of tools) { |
