From 8fb9bd9b407099a8427ba9453999de00aca3ac1e Mon Sep 17 00:00:00 2001 From: Brian Sparker Date: Fri, 24 Jul 2026 13:16:29 -0400 Subject: [PATCH] docs: add You.com Search to Common MCP Servers Co-Authored-By: Claude Fable 5 --- cecli/website/docs/config/mcp.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/cecli/website/docs/config/mcp.md b/cecli/website/docs/config/mcp.md index 550dd7c69d0..2374b362ea6 100644 --- a/cecli/website/docs/config/mcp.md +++ b/cecli/website/docs/config/mcp.md @@ -171,6 +171,22 @@ mcp-servers: url: https://mcp.deepwiki.com/mcp ``` +### You.com Search + +You.com MCP provides live web and news search with LLM-ready results, useful when the model needs current information — release notes, library docs, error messages — beyond its training cutoff, and as the search complement to `/web` (search first, then scrape the best result). The configuration below uses the free keyless profile (web search only, rate limited per IP), so it works with no signup; an [API key](https://you.com/docs/build-with-agents/mcp-server?utm_source=cecli-dev-cecli&utm_medium=oss_integration&utm_campaign=2026-07-oss-integrations&utm_content=docs) additionally unlocks page content extraction and cited multi-source research tools. + +```yaml +mcp-servers: + mcpServers: + youcom: + transport: http + url: https://api.you.com/mcp?profile=free + # With a You.com API key (unlocks you-contents and you-research): + # url: https://api.you.com/mcp + # headers: + # Authorization: "Bearer " +``` + ### Serena Serena MCP provides LSP support for the current project, offering code analysis, symbol navigation, and project-specific tooling. It runs as a local stdio server and provides context-aware development assistance directly within the IDE environment.