Skip to main content
Glama

vscode-mcp

MCP-сервер (Model Context Protocol), который предоставляет возможности Claude IDE внутри VS Code и Cursor. Claude может читать, записывать, редактировать, искать и выполнять команды в вашем рабочем пространстве — прямо из чата.

Инструменты

Инструмент

Описание

read_file

Чтение содержимого файла, с опциональным диапазоном строк

write_file

Запись или перезапись файла (создает родительские директории)

edit_file

Замена точной строки в файле

list_directory

Список файлов и директорий (опционально рекурсивно)

create_directory

Создание дерева директорий

delete_path

Удаление файла или директории

move_path

Перемещение или переименование файла/директории

search_files

Поиск по файлам с использованием регулярных выражений (в стиле grep)

find_files

Поиск файлов по glob-шаблону (например, *.ts)

run_command

Выполнение любой команды оболочки, захват вывода

get_workspace_info

Платформа, версия Node, ветка git и статус

get_file_info

Метаданные файла (размер, время изменения, тип)

Related MCP server: code-context

Установка

npm install
npm run build

Использование с Cursor

Cursor считывает конфигурацию MCP-сервера из:

  • Глобально: ~/.cursor/mcp.json

  • Проект: .cursor/mcp.json (в корне вашего проекта)

Вариант А — запуск через node (после сборки)

Добавьте в конфигурацию MCP Cursor:

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

Вариант Б — запуск через npx (сборка вручную не требуется)

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

После редактирования конфигурации откройте Cursor Settings → Features → MCP и нажмите Refresh (или перезапустите Cursor).

Использование с VS Code + Copilot Chat (поддержка MCP)

Добавьте в ваш settings.json для VS Code:

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

Разработка

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

Советы

  • Все пути могут быть абсолютными или относительными корню рабочего пространства.

  • Передавайте workspace_root любому инструменту, чтобы привязать относительные пути к конкретной директории.

  • run_command принимает любую команду оболочки — используйте её для git, npm, линтеров, компиляторов и т.д.

  • search_files автоматически пропускает node_modules, dist и скрытые папки.

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