support for mcp tools

This commit is contained in:
olcan
2025-05-04 12:11:19 -07:00
committed by Olcan
parent 6b6eef5b80
commit 9742f6e4a2
6 changed files with 677 additions and 46 deletions

View File

@@ -91,5 +91,6 @@ export async function loadCliConfig(settings: Settings): Promise<Config> {
argv.full_context || false,
settings.toolDiscoveryCommand,
settings.toolCallCommand,
settings.mcpServerCommand,
);
}

View File

@@ -22,6 +22,7 @@ export interface Settings {
sandbox?: boolean | string;
toolDiscoveryCommand?: string;
toolCallCommand?: string;
mcpServerCommand?: string;
// Add other settings here.
}