From 05e19098b25e8b18c594cafd026e2c26f939699e Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Fri, 13 Mar 2026 13:29:56 -0600 Subject: [PATCH] feat: Added the duckduckgo-search MCP server for searching the web (in addition to the built-in tools for web searches) --- assets/functions/mcp.json | 4 ++++ config.example.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/functions/mcp.json b/assets/functions/mcp.json index e9af068..d3794f6 100644 --- a/assets/functions/mcp.json +++ b/assets/functions/mcp.json @@ -21,6 +21,10 @@ "docker": { "command": "uvx", "args": ["mcp-server-docker"] + }, + "ddg-search": { + "command": "uvx", + "args": ["duckduckgo-mcp-server"] } } } diff --git a/config.example.yaml b/config.example.yaml index b6acb0a..b626163 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -77,7 +77,7 @@ visible_tools: # Which tools are visible to be compiled (and a mcp_server_support: true # Enables or disables MCP servers (globally). mapping_mcp_servers: # Alias for an MCP server or set of servers git: github,gitmcp -enabled_mcp_servers: null # Which MCP servers to enable by default (e.g. 'github,slack') +enabled_mcp_servers: null # Which MCP servers to enable by default (e.g. 'github,slack,ddg-search') # ---- Session ---- # See the [Session documentation](./docs/SESSIONS.md) for more information