VS Code

How to Add MCP Servers to VS Code

code.visualstudio.com

GitHub Copilot in VS Code supports MCP servers for enhanced AI-assisted development.

Setup Guide

1. Locate the config file

.vscode/settings.json

2. Add a server configuration

Add the following to your JSON config:

{
    "mcpServers": {
      "markitdown": {
        "command": "uvx",
        "args": ["markitdown-mcp"]
      }
    }
  }

3. Restart VS Code

Restart or reload VS Code to pick up the new MCP server configuration.

Compatible Servers (1874)