From 4dde195a287ca98c16f6d347c0a80ca27111bac6 Mon Sep 17 00:00:00 2001 From: lihua Date: Fri, 13 Mar 2026 16:37:48 +0800 Subject: [PATCH] init --- nanobot/config/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/config/schema.py b/nanobot/config/schema.py index 7471966..aa3e676 100644 --- a/nanobot/config/schema.py +++ b/nanobot/config/schema.py @@ -140,7 +140,7 @@ class MCPServerConfig(Base): url: str = "" # HTTP/SSE: endpoint URL headers: dict[str, str] = Field(default_factory=dict) # HTTP/SSE: custom headers tool_timeout: int = 30 # seconds before a tool call is cancelled - + enabled_tools: list[str] = Field(default_factory=list) # Only register these tools; empty = all tools class ToolsConfig(Base): """Tools configuration."""