Content
# VSCode MCP Client Extension
This VSCode extension implements a Model Context Protocol (MCP) client that can connect to various MCP servers configured by the user.
## Features
- Connect to multiple MCP servers simultaneously (stdio or SSE)
- Support for MCP protocol version 2024-11-05
- Proper lifecycle management (initialization, operation, shutdown)
- Configuration through VSCode settings
## Configuration
Configure MCP servers in your VSCode settings:
```json
"mcpClient.servers": [
{
"type": "stdio",
"name": "Local MCP Server",
"enabled": true,
"command": "path/to/server/executable",
"args": ["--optional-arg1", "--optional-arg2"]
},
{
"type": "sse",
"name": "Remote MCP Server",
"enabled": true,
"url": "https://example.com/mcp-server"
}
]
```
## Commands
- `mcpClient.reconnectServers`: Manually reconnect to all configured MCP servers
## Development
1. Clone the repository
2. `pnpm install`
3. Open in VSCode
4. Press F5 to start debugging
You Might Also Like
Ollama
Ollama enables easy access to large language models on macOS, Windows, and Linux.

n8n
n8n is a flexible workflow automation platform for technical teams with 400+...
OpenWebUI
Open WebUI is an extensible web interface for various applications.

Dify
Dify is a cloud platform for AI workflows, enabling file uploads and self-hosting.

Zed
Zed is a high-performance multiplayer code editor from the creators of Atom.
MarkItDown MCP
markitdown-mcp is a lightweight MCP server for converting various URIs to Markdown.