Agents · MCP

MCP server

Expose Search, Contents, and Research to any MCP-compatible host (Claude Desktop, agent frameworks, IDE extensions).

Run the server

Shell
npx -y @you-com/mcp-server --api-key $YOU_API_KEY

Claude Desktop config

Add this entry to your claude_desktop_config.json:

JSON
{
  "mcpServers": {
    "you-com": {
      "command": "npx",
      "args": ["-y", "@you-com/mcp-server"],
      "env": { "YOU_API_KEY": "sk-live-..." }
    }
  }
}