Skip to main content
Glama

vscode-mcp

VS Code 및 Cursor 내에서 Claude에게 IDE 기능을 제공하는 MCP(Model Context Protocol) 서버입니다. 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 (프로젝트 루트)

옵션 A — node를 통해 실행 (빌드 후)

Cursor MCP 구성에 다음을 추가하세요:

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

옵션 B — npx를 통해 실행 (수동 빌드 불필요)

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

구성을 편집한 후 Cursor 설정 → 기능 → MCP를 열고 새로 고침을 클릭하세요 (또는 Cursor를 다시 시작하세요).

VS Code + Copilot Chat과 함께 사용하기 (MCP 지원)

VS Code의 settings.json에 다음을 추가하세요:

"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_filesnode_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