Skip to main content
ClaudeWave

STDIO bridge for the hosted You.com MCP server at https://api.you.com/mcp.

MCP ServersRegistry oficial25 estrellas6 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/12/2026
Install in Claude Code / Claude Desktop
Method: NPX · @youdotcom-oss/mcp
Claude Code CLI
claude mcp add mcp -- npx -y @youdotcom-oss/mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": ["-y", "@youdotcom-oss/mcp"],
      "env": {
        "YDC_API_KEY": "<ydc_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
YDC_API_KEY
Casos de uso

Resumen de MCP Servers

# @youdotcom-oss/mcp

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.

## Quick start

```jsonc
// Add this to your MCP client config (Claude Desktop, Cursor, Windsurf, etc.)
// Free tier — no API key, no signup.
{
  "mcpServers": {
    "you": {
      "command": "npx",
      "args": ["@youdotcom-oss/mcp"],
      "env": { "YDC_PROFILE": "free" }
    }
  }
}
```

If your client supports remote MCP, point it at `https://api.you.com/mcp?profile=free` directly — no local process needed.

### Claude Desktop

Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):

```jsonc
{
  "mcpServers": {
    "you": {
      "command": "npx",
      "args": ["@youdotcom-oss/mcp"],
      "env": { "YDC_PROFILE": "free" }
    }
  }
}
```

Authenticated (all default tools):

```jsonc
{
  "mcpServers": {
    "you": {
      "command": "npx",
      "args": ["@youdotcom-oss/mcp"],
      "env": { "YDC_API_KEY": "<your-key>" }
    }
  }
}
```

### Claude Code

```bash
# 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/mcp
```

### Cursor

Add to `~/.cursor/mcp.json` (or `.cursor/mcp.json` in a project):

```jsonc
{
  "mcpServers": {
    "you": {
      "command": "npx",
      "args": ["@youdotcom-oss/mcp"],
      "env": { "YDC_PROFILE": "free" }
    }
  }
}
```

### Windsurf

Add to `~/.codeium/windsurf/mcp_config.json`:

```jsonc
{
  "mcpServers": {
    "you": {
      "command": "npx",
      "args": ["@youdotcom-oss/mcp"],
      "env": { "YDC_PROFILE": "free" }
    }
  }
}
```

### VS Code

Add to your user or workspace `mcp.json`:

```jsonc
{
  "servers": {
    "you": {
      "command": "npx",
      "args": ["@youdotcom-oss/mcp"],
      "env": { "YDC_PROFILE": "free" }
    }
  }
}
```

### Any MCP client (remote)

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>
```

## Install

```bash
bun add @youdotcom-oss/mcp
```

Or run it directly:

```bash
npx @youdotcom-oss/mcp
```

## Environment

- `YDC_API_KEY`
  Optional. Sent as `Authorization: Bearer <key>`.
- `YDC_PROFILE`
  Optional. When set to `free`, routes the bridge to `https://api.you.com/mcp?profile=free`.
- `YDC_ALLOWED_TOOLS`
  Optional. Comma-separated hosted tool ids to expose through `https://api.you.com/mcp?tools=...`.

`YDC_PROFILE` takes precedence over `YDC_ALLOWED_TOOLS`.

## Tool exposure

The default hosted MCP URL exposes four tools:

- `you-search`
- `you-contents`
- `you-balance`
- `you-discover`

Two additional tools are available on request:

- `you-finance`
- `you-research`

Request additional tools explicitly with `tools`. `tools` scopes the visible tool set.

Today, `profile=free` is a search-only mode. It overrides `tools` and exposes only `you-search`.

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 search profile: `https://api.you.com/mcp?profile=free`

## Links

- API keys: [you.com/platform/api-keys](https://you.com/platform/api-keys)
- Platform docs: [documentation.you.com](https://documentation.you.com)
- MCP registry listing: [`io.github.youdotcom-oss/mcp`](https://registry.modelcontextprotocol.io/?q=io.github.youdotcom-oss%2Fmcp)
- Issues: [github.com/youdotcom-oss/mcp/issues](https://github.com/youdotcom-oss/mcp/issues)
- Support: support@you.com

## Contributing

Development setup and code conventions live in [AGENTS.md](./AGENTS.md); contribution flow and PR conventions live in [CONTRIBUTING.md](./CONTRIBUTING.md). Issues and PRs welcome.

## License

MIT — see [LICENSE](./LICENSE).
ai-integrationmcpmcp-servermodel-context-protocolyou-apiyoucom

Lo que la gente pregunta sobre mcp

¿Qué es youdotcom-oss/mcp?

+

youdotcom-oss/mcp es mcp servers para el ecosistema de Claude AI. STDIO bridge for the hosted You.com MCP server at https://api.you.com/mcp. Tiene 25 estrellas en GitHub y su última actualización registrada es del 2026-09-11.

¿Cómo se instala mcp?

+

Puedes instalar mcp clonando el repositorio (https://github.com/youdotcom-oss/mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar youdotcom-oss/mcp?

+

Nuestro agente de seguridad ha analizado youdotcom-oss/mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene youdotcom-oss/mcp?

+

youdotcom-oss/mcp es mantenido por youdotcom-oss. La última actividad registrada en GitHub es del 2026-09-11, con 0 issues abiertos.

¿Hay alternativas a mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: youdotcom-oss/mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/youdotcom-oss-mcp)](https://claudewave.com/repo/youdotcom-oss-mcp)
<a href="https://claudewave.com/repo/youdotcom-oss-mcp"><img src="https://claudewave.com/api/badge/youdotcom-oss-mcp" alt="Featured on ClaudeWave: youdotcom-oss/mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp