一个轻量级的桥接扩展,允许Claude Desktop通过模型上下文协议(MCP)连接到你的VSCode工作区。
如果你正在使用Claude Desktop与VSCode,这个桥接可以让你:
在Claude Desktop中,配置你的claude_desktop_config.json文件:
{
"mcpServers": {
"nexus-bridge": {
"url": "http://localhost:3000/mcp",
"disabled": false,
"alwaysAllow": [
"get_system_info",
"read_file",
"write_file",
"create_directory",
"list_directory",
"get_project_status"
]
}
}
}
你可以在VSCode设置中配置此扩展:
{
"nexusMcpBridge.port": 3000,
"nexusMcpBridge.startOnLaunch": true,
"nexusMcpBridge.allowedPaths": [
"/path/to/your/project",
"/path/to/another/project"
]
}
一个轻量级的VSCode扩展,用于通过MCP连接Claude Desktop。
github.com/wesnermichel
MIT# nexus-mcp-claude-desktop-server