Skip to main content
Glama

vscode-mcp

Ein MCP-Server (Model Context Protocol), der Claude IDE-Funktionen innerhalb von VS Code und Cursor bereitstellt. Claude kann Dateien lesen, schreiben, bearbeiten, durchsuchen und Befehle in Ihrem Workspace ausführen — direkt aus dem Chat heraus.

Tools

Tool

Beschreibung

read_file

Dateiinhalt lesen, mit optionalem Zeilenbereich

write_file

Datei schreiben oder überschreiben (erstellt übergeordnete Verzeichnisse)

edit_file

Eine exakte Zeichenfolge in einer Datei ersetzen

list_directory

Dateien und Verzeichnisse auflisten (optional rekursiv)

create_directory

Einen Verzeichnisbaum erstellen

delete_path

Datei oder Verzeichnis löschen

move_path

Datei/Verzeichnis verschieben oder umbenennen

search_files

Grep-artige Regex-Suche in Dateien

find_files

Dateien nach Glob-Muster finden (z. B. *.ts)

run_command

Beliebigen Shell-Befehl ausführen, Ausgabe erfassen

get_workspace_info

Plattform, Node-Version, Git-Branch & Status

get_file_info

Dateimetadaten (Größe, Änderungszeit, Typ)

Related MCP server: code-context

Installation

npm install
npm run build

Verwendung mit Cursor

Cursor liest die MCP-Server-Konfiguration aus:

  • Global: ~/.cursor/mcp.json

  • Projekt: .cursor/mcp.json (im Projekt-Root)

Option A — Ausführung via node (nach dem Build)

Fügen Sie dies zu Ihrer Cursor-MCP-Konfiguration hinzu:

{
  "mcpServers": {
    "vscode-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/vscode-mcp/dist/index.js"]
    }
  }
}

Option B — Ausführung via npx (kein manueller Build erforderlich)

{
  "mcpServers": {
    "vscode-mcp": {
      "command": "npx",
      "args": ["--yes", "vscode-mcp"]
    }
  }
}

Öffnen Sie nach dem Bearbeiten der Konfiguration Cursor Settings → Features → MCP und klicken Sie auf Refresh (oder starten Sie Cursor neu).

Verwendung mit VS Code + Copilot Chat (MCP-Unterstützung)

Fügen Sie dies zu Ihrer VS Code settings.json hinzu:

"mcp": {
  "servers": {
    "vscode-mcp": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/vscode-mcp/dist/index.js"]
    }
  }
}

Entwicklung

npm run dev    # watch mode (recompiles on save)
npm start      # run the built server

Tipps

  • Alle Pfade können absolut oder relativ zum Workspace-Root sein.

  • Übergeben Sie workspace_root an ein beliebiges Tool, um relative Pfade an ein bestimmtes Verzeichnis zu binden.

  • run_command akzeptiert jeden Shell-Befehl — verwenden Sie ihn für git, npm, Linter, Compiler usw.

  • search_files überspringt automatisch node_modules, dist und versteckte Ordner.

Install Server
F
license - not found
A
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    An MCP server that implements Claude Code-like functionality, allowing the AI to analyze codebases, modify files, execute commands, and manage projects through direct file system interactions.
    15
    304
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    An MCP server that provides dynamic codebase context to Claude Code through tools like hybrid search, recent changes, and symbol definitions, enhancing AI-assisted coding with local RAG.
    8
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    MCP server that integrates with VS Code to enable file operations, git diffs, and line highlighting via MCP clients like Claude.
    42
    MIT

View all related MCP servers

Related MCP Connectors

  • Augments MCP Server - A comprehensive framework documentation provider for Claude Code

  • Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer

  • An MCP server that gives your AI access to the source code and docs of all public github repos

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/KloutDevs/vscode-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server