Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions cecli/website/docs/config/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <your YDC_API_KEY>"
```

### 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.
Expand Down