fix(a2a-server): pass allowedTools settings to core Config (#19680)

This commit is contained in:
sinisterchill
2026-02-24 22:22:32 +05:30
committed by GitHub
parent 15f6c8b8da
commit 4efdbe9089
3 changed files with 52 additions and 2 deletions
@@ -27,6 +27,12 @@ export interface Settings {
mcpServers?: Record<string, MCPServerConfig>;
coreTools?: string[];
excludeTools?: string[];
allowedTools?: string[];
tools?: {
allowed?: string[];
exclude?: string[];
core?: string[];
};
telemetry?: TelemetrySettings;
showMemoryUsage?: boolean;
checkpointing?: CheckpointingSettings;