Bin-only STDIO bridge for the hosted You.com MCP server at https://api.you.com/mcp.
This package does not register tools locally and does not contain REST tool logic. Its only job is to proxy STDIO MCP traffic to the hosted remote server.
If your client supports remote MCP, point it at https://api.you.com/mcp?profile=free directly — no local process needed.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["@youdotcom-oss/mcp"],
"env": { "YDC_PROFILE": "free" }
}
}
}Authenticated (all default tools):
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["@youdotcom-oss/mcp"],
"env": { "YDC_API_KEY": "<your-key>" }
}
}
}# Free tier
claude mcp add you -e YDC_PROFILE=free -- npx @youdotcom-oss/mcp
# Authenticated
claude mcp add you -e YDC_API_KEY=<your-key> -- npx @youdotcom-oss/mcpAdd to ~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["@youdotcom-oss/mcp"],
"env": { "YDC_PROFILE": "free" }
}
}
}Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"you": {
"command": "npx",
"args": ["@youdotcom-oss/mcp"],
"env": { "YDC_PROFILE": "free" }
}
}
}Add to your user or workspace mcp.json:
{
"servers": {
"you": {
"command": "npx",
"args": ["@youdotcom-oss/mcp"],
"env": { "YDC_PROFILE": "free" }
}
}
}If your client speaks streamable HTTP, skip the local bridge:
https://api.you.com/mcp?profile=free
Authenticated:
https://api.you.com/mcp
Authorization: Bearer <your-key>
bun add @youdotcom-oss/mcpOr run it directly:
npx @youdotcom-oss/mcpYDC_API_KEYOptional. Sent asAuthorization: Bearer <key>.YDC_PROFILEOptional. When set tofree, routes the bridge tohttps://api.you.com/mcp?profile=free.YDC_ALLOWED_TOOLSOptional. Comma-separated hosted tool ids to expose throughhttps://api.you.com/mcp?tools=....
YDC_PROFILE takes precedence over YDC_ALLOWED_TOOLS.
The default hosted MCP URL exposes four tools:
you-searchyou-contentsyou-balanceyou-discover
Two additional tools are available on request:
you-financeyou-research
Request additional tools explicitly with tools. tools scopes the visible tool set.
Today, profile=free is a keyless mode. It overrides tools and exposes you-search and you-discover.
Examples:
- Default tool set:
https://api.you.com/mcp - Finance only:
https://api.you.com/mcp?tools=you-finance - Search plus finance:
https://api.you.com/mcp?tools=you-search,you-finance - Research only:
https://api.you.com/mcp?tools=you-research - Free profile (keyless):
https://api.you.com/mcp?profile=free
- API keys: you.com/platform/api-keys
- Platform docs: documentation.you.com
- MCP registry listing:
io.github.youdotcom-oss/mcp - Issues: github.com/youdotcom-oss/mcp/issues
- Support: support@you.com
Development setup and code conventions live in AGENTS.md; contribution flow and PR conventions live in CONTRIBUTING.md. Issues and PRs welcome.
MIT — see LICENSE.