From 5a61d48d08bce70fe2616de97237cb8f968fcfb4 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Mon, 17 Aug 2026 12:57:02 +0200 Subject: [PATCH] clarify docs --- tools/server/server-tools.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/server/server-tools.cpp b/tools/server/server-tools.cpp index 7e249a48bb..c5cab3a6d9 100644 --- a/tools/server/server-tools.cpp +++ b/tools/server/server-tools.cpp @@ -1950,6 +1950,10 @@ static server_tool & find_tool(std::vector> & tools // static std::vector> build_tools() { + // IMPORTANT: for contributors, please keep this array of tools as minimal as possible + // we only accept minimal i/o and shell command tools here + // for example, do not add: web search, get date time, etc. + // high-level functionality should be added either via MCP or web UI std::vector> tools; tools.push_back(std::make_unique()); tools.push_back(std::make_unique());