wesnermichel_nexus-mcp-claude-desktop-server

wesnermichel_nexus-mcp-claude-desktop-server

3.3

Nexus MCP Bridge for VSCode is a lightweight extension that connects Claude Desktop to your VSCode workspace using the Model Context Protocol (MCP).

The Nexus MCP Bridge for VSCode is designed to facilitate seamless integration between Claude Desktop and VSCode by leveraging the Model Context Protocol (MCP). This extension is lightweight, ensuring minimal memory usage while providing essential functionalities such as file system access and directory management. It integrates with the VSCode status bar for easy control and visibility of the bridge status. The bridge can be configured to start automatically with VSCode, and it includes security controls to manage accessible paths, ensuring that only specified directories are exposed. This tool is particularly useful for users who want to maintain their workflow within VSCode without switching contexts and need to manage system resources efficiently.

Features

  • Minimal Memory Footprint: Designed to be lightweight and efficient
  • Automatic Startup: Can start automatically when VSCode launches
  • Status Bar Integration: Easily see and control the bridge status
  • File System Access: Enables Claude to read and write files in your workspace
  • Security Controls: Configure which paths are accessible

Usage with Different Platforms

Setup for Claude Desktop


{
  "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"
      ]
    }
  }
}

Configuration in VSCode


{
  "nexusMcpBridge.port": 3000,
  "nexusMcpBridge.startOnLaunch": true,
  "nexusMcpBridge.allowedPaths": [
    "/path/to/your/project",
    "/path/to/another/project"
  ]
}