vscode-mcp
vscode-mcp
VS Code 및 Cursor 내에서 Claude에게 IDE 기능을 제공하는 MCP(Model Context Protocol) 서버입니다. Claude는 채팅에서 직접 워크스페이스의 파일을 읽고, 쓰고, 편집하고, 검색하고, 명령을 실행할 수 있습니다.
도구
도구 | 설명 |
| 파일 내용을 읽습니다 (선택적으로 줄 범위 지정 가능) |
| 파일을 쓰거나 덮어씁니다 (상위 디렉터리 생성) |
| 파일 내의 정확한 문자열을 교체합니다 |
| 파일 및 디렉터리 목록을 표시합니다 (선택적으로 재귀적 탐색 가능) |
| 디렉터리 트리를 생성합니다 |
| 파일이나 디렉터리를 삭제합니다 |
| 파일/디렉터리를 이동하거나 이름을 변경합니다 |
| 파일 전체에서 Grep 스타일의 정규식 검색을 수행합니다 |
| glob 패턴(예: |
| 모든 셸 명령을 실행하고 출력을 캡처합니다 |
| 플랫폼, Node 버전, git 브랜치 및 상태 정보를 가져옵니다 |
| 파일 메타데이터(크기, 수정 시간, 유형)를 가져옵니다 |
Related MCP server: code-context
설치
npm install
npm run buildCursor와 함께 사용하기
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_files는node_modules,dist및 숨겨진 폴더를 자동으로 건너뜁니다.
Maintenance
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
- AlicenseAqualityBmaintenanceAn 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.15304MIT
- AlicenseAqualityCmaintenanceAn 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.8MIT
- AlicenseNot gradedqualityFmaintenanceMCP server that integrates with VS Code to enable file operations, git diffs, and line highlighting via MCP clients like Claude.42MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that allows Claude Desktop to remotely control Claude Code instances for executing commands and managing files.61GPL 3.0
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
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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