
How to Add MCP Servers to VS Code
code.visualstudio.comGitHub Copilot in VS Code supports MCP servers for enhanced AI-assisted development.
Setup Guide
1. Locate the config file
.vscode/settings.json2. 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.