Cursor

View as MarkdownOpen in Claude

Give Cursor real-time web search, content extraction, and citation-backed research through the You.com MCP Server.

Quick Setup

1

One-Click Install

Add MCP Server to Cursor

Clicking the button opens Cursor and pre-fills the configuration. Cursor will trigger OAuth automatically — sign in to You.com in the browser window that opens, and the integration is live.

2

Manual Setup

If you’d rather configure by hand, open Cursor settings → MCP → Add new server, and paste:

1{
2 "mcpServers": {
3 "you-com": {
4 "url": "https://api.you.com/mcp"
5 }
6 }
7}

Cursor gotcha: don’t include a "type": "http" field. Cursor’s MCP config format omits it.

3

Use an API Key

1{
2 "mcpServers": {
3 "you-com": {
4 "url": "https://api.you.com/mcp",
5 "headers": {
6 "Authorization": "Bearer <YDC_API_KEY>"
7 }
8 }
9 }
10}
4

Use the Free Tier

1{
2 "mcpServers": {
3 "you-com": {
4 "url": "https://api.you.com/mcp?profile=free"
5 }
6 }
7}

Quick demo

Open the agent panel and try:

Find the official Next.js 15 migration guide and pull the breaking-changes section verbatim.
Research which AI search APIs offer OAuth 2.1, with citations.

Troubleshooting

Restart Cursor after editing the MCP config. The reload-on-save behavior is unreliable in current builds.

Check that you don’t have a popup blocker active for cursor:// deeplinks.

Confirm Cursor’s built-in web search is disabled. The agent may be preferring the cheaper local tool.

Remove the type field. Cursor doesn’t use it.

Resources