Skip to main content
Glama
ndyadav8797-art

VS Code + GPT Bridge

MCP Server - VS Code + GPT Bridge

Setup

  1. Install Dependencies:

cd mcp
pip install -r requirements.txt
  1. GPT Desktop mein Add karo:

Windows:

  • File Explorer mein jao: %APPDATA%\OpenAI\ChatGPT\

  • config.json file banao (agar nahi hai)

  • Ye paste karo:

{
  "mcpServers": {
    "vscode-mcp": {
      "command": "python",
      "args": ["c:\\Users\\DEV\\UE5\\mcp\\server.py"]
    }
  }
}
  1. GPT Desktop restart karo

  2. Test karo: GPT se bolo: "List files in c:\Users\DEV\UE5"

Related MCP server: notion-local-ops-mcp

Available Tools

File Operations

  • read_file - File read karo

  • write_file - File create/write karo

  • edit_file - Specific lines edit karo

  • delete_file - File delete karo

  • list_directory - Directory list karo

  • search_files - Files search karo

  • create_directory - Directory banao

Command Operations

  • run_command - Shell commands run karo

  • git_status - Git status check karo

Usage Example

GPT Desktop mein directly bolo:

  • "Read the file c:\Users\DEV\UE5\test.py"

  • "Create a new file hello.py with hello world code"

  • "List all files in c:\Users\DEV\UE5"

  • "Run command 'dir' in my workspace"

API Endpoints

  • GET / - Server status

  • GET /tools - Available tools list

  • POST /execute - Execute tool

Test karo:

curl http://localhost:8000/tools

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides Claude Desktop with direct access to your local file system for development tasks, enabling file operations (read, write, edit), directory browsing, command execution, and codebase search within a configured projects directory.
    6
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables Notion AI to interact with local files, execute shell commands, and delegate complex tasks to local AI agents. Provides file operations, command execution, and task delegation capabilities for local workspace management.
    110
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables Claude Desktop or other MCP clients to execute shell commands, read/write files, and list directories on the local machine. Includes basic safety guardrails to block obviously destructive operations.
    -