From d165cb70fdf542b48f9b3d1e21adac2a09dd1f7a Mon Sep 17 00:00:00 2001 From: mouse-value-add Date: Wed, 9 Sep 2026 14:31:27 +0000 Subject: [PATCH] feat: add optional you.com search integration Add You.com's keyless you-search MCP server (https://api.you.com/mcp?profile=free) to the Quick Add servers list, so agents can search the web and read URLs with citations without any account or API key. Follows the same shape as the existing deepwiki and parallel-search entries. Opt-in: nothing is added until the user clicks Add. --- src/features/mcp/DefaultMcpServers.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/features/mcp/DefaultMcpServers.tsx b/src/features/mcp/DefaultMcpServers.tsx index f1fdef18..2e2773e7 100644 --- a/src/features/mcp/DefaultMcpServers.tsx +++ b/src/features/mcp/DefaultMcpServers.tsx @@ -30,6 +30,15 @@ export function DefaultMcpServers({ servers, onServerAdded }: DefaultMcpServersP url: 'https://mcp.deepwiki.com/mcp', }, }, + { + name: 'you-search', + description: + 'Web search for coding agents from You.com: current web results and URL content extraction with citations. No account or API key required.', + config: { + type: 'http' as const, + url: 'https://api.you.com/mcp?profile=free', + }, + }, ]; const handleAddDefaultServer = async (defaultServer: (typeof defaultServers)[0]) => {