VS Code

View as MarkdownOpen in Claude

Give GitHub Copilot’s agent mode real-time web search, content extraction, and citation-backed research through the You.com MCP Server.

Install our docs MCP server

This documentation ships with a Docs MCP Server that gives any MCP-enabled agent a searchDocs tool to search every page here and get back relevant passages with source URLs — no API key required. Point your client at https://you.com/docs/_mcp/server. See the Docs MCP Server guide for setup and examples.

Requirements: GitHub Copilot extension installed and signed in. MCP servers in VS Code run inside Copilot’s agent mode.

Quick Setup

1

One-Command Install

Fastest path — drop this in your terminal:

$code --add-mcp '{"name":"you-com","url":"https://api.you.com/mcp?profile=free","type":"http"}'

VS Code opens, prompts you to confirm, and the server is live. Free tier — no signup, 100 searches/day.

2

Manual Setup

If you’d rather configure by hand: open Settings → Search → “mcp”, click Edit in settings.json, and add:

1{
2 "mcp": {
3 "servers": {
4 "you-com": {
5 "type": "http",
6 "url": "https://api.you.com/mcp?profile=free"
7 }
8 }
9 }
10}

VS Code gotcha: the top-level key is mcp.servers, not mcpServers. This is different from Claude Desktop and Cursor’s format.

3

Higher Rate Limits + Full Toolset

With an API key, you get unlimited queries plus you-contents and you-research:

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

Get a key at you.com/platform.

4

Verify in Copilot

Open the Copilot chat panel, switch to Agent mode, and click the tools icon. You should see you-com listed with its three tools. Tick the tools you want available for the session.

Quick Demo

In Copilot agent mode:

Search the web for the latest VS Code release notes and tell me what's new in the agent mode.
Research which AI code editors support custom MCP servers in 2026, with citations.

Troubleshooting

Confirm you used mcp.servers, not mcpServers. VS Code’s schema is namespaced differently from other clients.

Make sure you’re in Agent mode, not Ask or Edit. MCP tools only surface in Agent mode.

In the Copilot tools picker, confirm the You.com tools are ticked. They default to enabled, but a long server list can push them off-screen.

Verify the Authorization header is exactly Bearer YDC-... with one space.

Install GitHub Copilot from the VS Code marketplace and sign in before configuring MCP.

Resources