A powerful VSCode extension that acts as a Model Context Protocol (MCP) client, enabling seamless integration between MCP tool servers and GitHub Copilot Chat. Join the growing ecosystem of interoperable AI applications with flexible integration options.
- Features
- MCP Feature Support
- Installation
- Configuration
- Usage
- FAQ
- Requirements
- Benefits
- Contributing
- Author
- License
- π§ MCP Server Management: Connect and manage multiple MCP servers through an intuitive UI
- π Copilot Integration: Expose MCP tools directly to GitHub Copilot Chat participants
- π― Tool Discovery: Automatically discover and surface available tools from connected MCP servers
- β‘ Server Health Monitoring: Real-time monitoring of MCP server status and connections
- π Automatic Connection Management: Seamless handling of MCP server connections and reconnections
- π οΈ Tool Invocation Support: Full support for MCP tool invocation through Copilot Chat
- π Multiple Server Types: Support for both process-based and SSE (Server-Sent Events) servers
- π‘οΈ Configuration Migration: Automatic migration of server configurations to the latest format
- 𧩠Server Configuration Command: Manual migration command for updating older configurations
Feature | Support |
---|---|
Tools | β Full support |
Resources | β Text resource support |
Prompts | β * Full support (coming soon) |
Sampling | β³ Planned |
Roots | β³ Planned |
- Install the extension from the VSCode Marketplace
- Configure your MCP servers through the extension settings
- Start using GitHub Copilot Chat with your MCP tools!
You can configure your MCP servers in the UI or in VSCode settings.
In the UI, look for the "MCP Servers" button in the activity bar.
To configure your MCP servers in VSCode settings:
{
"mcpManager.servers": [
{
"name": "Process-MCP-Server",
"type": "process",
"command": "start-server-command",
"enabled": true
},
{
"name": "SSE-MCP-Server",
"type": "sse",
"url": "https://your-sse-server.com/events",
"authToken": "your-optional-auth-token",
"enabled": true
}
]
}
Property | Type | Description |
---|---|---|
name |
string | Display name for the server |
type |
string | Server type: "process" or "sse" |
command |
string | Command to start the server (for process servers) |
url |
string | URL for SSE connection (for SSE servers) |
authToken |
string | Authentication token (optional, for SSE servers) |
enabled |
boolean | Whether the server is enabled |
env |
object | Environment variables for process servers (key-value pairs) |
- Open the MCP Servers view from the VSCode activity bar
- Add and configure your MCP servers
- Enable/disable servers as needed
- Use GitHub Copilot Chat with your connected MCP tools using the
@mcp
participant - View server status and tool availability in real-time
This is typically caused by connection timeouts between the MCP SDK and your servers. Here's how to fix it:
-
Use absolute paths for your executables - Instead of relative paths, specify the full path to your executable:
/home/<user>/.nvm/versions/node/v<version>/bin/npx figma-developer-mcp --stdio --figma-api-key=...
-
Find your executable paths - Not sure where your executables are located? Run this in your terminal:
which npx # or node, uvx, etc.
Using absolute paths helps prevent connection issues and ensures the MCP SDK can reliably launch your servers.
The tool calling limitations are imposed by the VSCode API and Copilot Chat. Unfortunately, the tool calling models are limited to Claude 3.5 and GPT-4o. If you still face issues with tool calls, try switching to one or the other just for the tool you want to run. You can force a tool call in these models by using the '#' key and selecting the tool manually in your query.
You can use the tools in Copilot Edits mode by manually specifying the tool(s) with the '#' key, and selecting the tool from the list:
GitHub Copilot has its own internal system prompt that may be dissuading tool calls in the chat. If you find that Copilot isn't using your tools automatically, try using the manual tool selection method mentioned above.
- VSCode
- GitHub Copilot Chat extension
- Compatible MCP servers (see Example Servers)
- Enable Copilot to use custom context and tools through MCP
- Join the growing ecosystem of interoperable AI applications
- Support local-first AI workflows
- Flexible integration options for your development workflow
Contributions, issues and feature requests are welcome! Feel free to check the issues page.
Vikash Loomba
- Website: https://automatalabs.io
- Github: @vikashloomba
Copyright Β© 2024 Vikash Loomba.
This project is licensed under the GNU General Public License v3.0.
Part of the MCP Client Ecosystem - Enabling interoperable AI tools for developers βοΈ