feat: add optional you.com search integration - #82
Merged
milisp merged 1 commit intoSep 9, 2026
Merged
Conversation
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.
Owner
|
Thanks for PR, merge |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds You.com's keyless
you-searchMCP server to the Quick Add servers list:you-searchhttps://api.you.com/mcp?profile=freeThis gives agent sessions one-click access to current web search and URL content extraction with citations — useful when a Codex/Claude session needs up-to-date docs, release notes, or library answers that aren't in the local repo.
Why this shape
I noticed the Quick Add list already ships keyless HTTP servers (deepwiki, parallel-search), so I followed that exact pattern — one entry in
defaultServers, nothing else. It's strictly opt-in: nothing is added to a user's config until they click Add, and the card greys out once the server exists. TheHttpMcpServerConfigtype doesn't carry headers, so I used You.com's keyless free profile rather than the authenticated endpoint — same no-signup experience as the other entries.For users who want the fuller toolset (
you-contents,you-research), the authenticated serverhttps://api.you.com/mcpcan be added manually via the Add panel with aYDC_API_KEYbearer header (API keys at you.com/platform/api-keys). The broader skills/plugin packaging for agent platforms lives at youdotcom-oss/agent-skills if that's ever useful here.Validation
bun install+bun run build(tsc + vite) — passbun run typecheck— passbun run test— 20/20 passbiome checkon the touched file — clean (one pre-existinginfoon an untouched line)initializePOST againsthttps://api.you.com/mcp?profile=freereturns HTTP 200Happy to adjust the description wording or drop the entry entirely if you'd rather keep the Quick Add list curated to a smaller set.