VS Code supports MCP servers through GitHub Copilot Chat. When you configure an MCP server, Copilot Chat gains access to external tools. Ask it to query your database, check deployment status, or pull metrics from any connected service.
MCP tools appear in the Copilot Chat tool picker. The agent decides when to call them based on your prompt context.
VS Code reads MCP configuration from .vscode/mcp.json in your workspace root:
{
"servers": {
"your-tool": {
"type": "sse",
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}Replace YOUR_SERVER_ID with your DataFaucet server ID from your dashboard.
Open VS Code Settings (Ctrl+Comma) and search for "mcp". Ensure chat.mcp.enabled is set to true. This is enabled by default in recent VS Code versions but worth confirming.
Open the Command Palette (Ctrl+Shift+P) and run "MCP: List Servers". Your server should appear with a connected status. If disconnected, check the URL and ensure Copilot Chat extension is installed and active.
Open Copilot Chat (Ctrl+Shift+I) and switch to Agent mode. Type a prompt that requires your MCP tool:
Copilot identifies the relevant tool, calls it, and weaves the result into its response.
Stack multiple servers in the same config:
{
"servers": {
"database": {
"type": "sse",
"url": "https://datafaucet.dev/api/mcp/SERVER_1/sse"
},
"monitoring": {
"type": "sse",
"url": "https://datafaucet.dev/api/mcp/SERVER_2/sse"
},
"tickets": {
"type": "sse",
"url": "https://datafaucet.dev/api/mcp/SERVER_3/sse"
}
}
}Each server name becomes a tool namespace. Copilot sees all available tools and selects the appropriate one.
VS Code supports both:
{
"servers": {
"local-tool": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@some/mcp-server"]
}
}
}DataFaucet servers are always SSE. No local dependencies, no Docker, no process management.
You can also add MCP servers to your user-level settings.json:
{
"mcp": {
"servers": {
"your-tool": {
"type": "sse",
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}
}User-level servers are available across all workspaces. Workspace-level (.vscode/mcp.json) servers only load for that project. Use workspace config for project-specific tools and user settings for tools you want everywhere.
Server shows disconnected:
Confirm the SSE URL is correct. Visit it in a browser to verify the endpoint responds. Check that GitHub Copilot Chat extension is active (not just GitHub Copilot).
Tools not appearing:
Ensure you're in Agent mode within Copilot Chat. Standard chat mode doesn't invoke MCP tools. Also verify chat.mcp.enabled is true in settings.
Auth errors on tool calls:
If the target API needs fresh credentials, re-record the server on your DataFaucet dashboard. Browse the app again to capture updated auth tokens.
No MCP server yet? DataFaucet creates one in 60 seconds:
.vscode/mcp.jsonWorks with internal tools, undocumented APIs, and apps that have no official MCP integration. Your AI gets typed tool definitions, pre-configured auth, and structured responses.
Create your VS Code MCP server in 60 seconds.
Try with VS Code →{
"mcpServers": {
"vs-code": {
"url": "https://datafaucet.dev/api/mcp/YOUR_SERVER_ID/sse"
}
}
}Replace YOUR_SERVER_ID with the ID from your DataFaucet dashboard after creating your VS Code server.
Point DataFaucet at VS Code and get a working server in 60 seconds.
Create VS Code server free →After creating, add to Claude Desktop:
"vs-code": {
"url": "https://datafaucet.dev/api/mcp/YOUR_ID/sse"
}Free plan includes 3 servers. Upgrade to Pro for unlimited →
A startup connected Stripe, Linear, Slack, Vercel, and PostHog to AI via MCP. Standup prep went from 15 minutes to one prompt.
Step-by-step guide to debugging MCP server connections. Fix SSE timeouts, tool discovery failures, auth errors, and protocol mismatches.
Top MCP servers for security teams: vulnerability scanners, SIEM dashboards, secrets management, compliance tools, and incident response via AI.
See how DataFaucet compares
Point at any URL. Get a working MCP server in 60 seconds. No API docs needed.
Works with ChatGPT, Claude, Cursor, Copilot, Windsurf, JetBrains, and any MCP client
Get notified when new integrations launch
Join 500+ builders. New templates, guides, and MCP tips. No spam.