Skip to content

Commit ac0732a

Browse files
authored
Merge pull request #575 from mouse-value-add/feat/youcom-mcp-integration
feat: add optional You.com search integration
2 parents 6ef61f7 + a0824ac commit ac0732a

1 file changed

Lines changed: 57 additions & 0 deletions

File tree

docs/config/tools.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,63 @@ For MCP servers configuration, use the `mcpServers` config, examples:
111111
}
112112
```
113113

114+
=== "You.com web search & research"
115+
116+
[You.com](https://you.com/?utm_source=editor-code-assistant-eca&utm_medium=2026-08-oss-integrations&utm_content=docs) provides web search, URL content extraction, and AI-powered research via MCP.
117+
118+
**Option 1: Authenticated (full features)**
119+
120+
Get your API key from [you.com/api](https://you.com/api?utm_source=editor-code-assistant-eca&utm_medium=2026-08-oss-integrations&utm_content=docs) and set it as `YDC_API_KEY` environment variable:
121+
122+
```javascript title="~/.config/eca/config.json"
123+
{
124+
"mcpServers": {
125+
"you-search": {
126+
"url": "https://api.you.com/mcp",
127+
"headers": {
128+
"Authorization": "Bearer ${env:YDC_API_KEY}"
129+
}
130+
}
131+
}
132+
}
133+
```
134+
135+
**Option 2: Keyless (basic web search)**
136+
137+
Try You.com search without an API key using the free profile:
138+
139+
```javascript title="~/.config/eca/config.json"
140+
{
141+
"mcpServers": {
142+
"you-search-free": {
143+
"url": "https://api.you.com/mcp?profile=free"
144+
}
145+
}
146+
}
147+
```
148+
149+
**Option 3: Specialized profiles**
150+
151+
Use focused endpoints for specific domains:
152+
153+
```javascript title="~/.config/eca/config.json"
154+
{
155+
"mcpServers": {
156+
"you-finance": {
157+
"url": "https://api.you.com/mcp?tools=you-finance",
158+
"headers": {
159+
"Authorization": "Bearer ${env:YDC_API_KEY}"
160+
}
161+
},
162+
"you-docs": {
163+
"url": "https://you.com/docs/_mcp/server"
164+
}
165+
}
166+
}
167+
```
168+
169+
Available tools include `you_search` (web search with citations), `you_url_contents` (webpage content extraction), and `you_research` (multi-step research workflows).
170+
114171
=== "Advanced — DCR client name override"
115172

116173
Some OAuth-protected MCP servers allowlist clients during Dynamic Client

0 commit comments

Comments
 (0)