Cursor MCP Installer

by matthewdcage
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Provides access to GitHub repositories and data through the @modelcontextprotocol/server-github package, requiring a personal access token for authentication.

  • Enables installation and configuration of MCP servers from npm packages, with support for Node.js-based MCP servers.

  • Supports Python-based MCP servers, automatically configuring them to run as Python modules with proper environment variables.

커서 MCP 설치 프로그램

📢 이제 NPM에서 사용 가능합니다! 간단한 npm install -g cursor-mcp-installer-free 명령으로 설치하거나 npx cursor-mcp-installer-free 또는 uvx cursor-mcp-installer-free 명령을 직접 사용하세요!

🔄 최신 업데이트(v0.1.3): 모든 MCP 서버 설치 경로 처리 개선, OpenAPI 스키마 감지 기능 향상, 로컬 디렉터리에서 서버 검색 기능 강화. 초기 설치 경로 처리 문제를 제출해 주신 @ItzAmirreza 님께 감사드립니다. 자세한 내용은 CHANGELOG.md를 참조하세요.

빠른 시작 가이드

1단계: 커서 구성에 추가

커서 구성에 MCP 설치 프로그램을 추가하려면 다음 방법 중 하나를 선택하세요.

npx 사용(가장 쉬움 - 설치 불필요)

~/.cursor/mcp.json 파일에 다음을 추가합니다(파일이 없으면 만듭니다).

지엑스피1

npm 사용(전역 설치)

npm install -g cursor-mcp-installer-free@0.1.3

그런 다음 ~/.cursor/mcp.json 에 다음을 추가합니다.

{ "mcpServers": { "MCP Installer": { "command": "cursor-mcp-installer-free", "type": "stdio", "args": [ "index.mjs" ] } } }

2단계: 커서 다시 시작

커서를 닫았다가 다시 열어 구성 변경 사항을 적용합니다.

3단계: Claude를 사용하여 서버 설치

Claude에게 MCP 서버를 설치해 달라고 요청하세요.

Install the web search MCP server

또는

Install the MCP server for OpenAPI schema exploration with my-schema.yaml

4단계: 설치 후 표시되는 내용

올바르게 설치하고 Cursor를 다시 시작하면 Claude를 사용할 때 사이드바에 MCP 설치 프로그램이 표시됩니다.

MCP 설치 프로그램은 세 가지 주요 도구를 제공합니다.

  • install_repo_mcp_server : npm 패키지 또는 저장소에서 MCP 서버를 설치합니다.
  • install_local_mcp_server : 로컬 디렉토리에서 MCP 서버 설치
  • add_to_cursor_config : 사용자 정의 MCP 서버 구성 추가

특징

  • npm 패키지에서 MCP 서버 설치
  • 로컬 디렉토리에서 MCP 서버 설치
  • 커서를 위한 MCP 서버 구성
  • 사용자 정의 MCP 서버 구성 추가

필수 조건

이 도구를 사용하려면 다음이 설치되어 있어야 합니다.

설치

Cursor MCP 설치 프로그램을 설치하고 사용하는 방법에는 여러 가지가 있습니다.

1. npm 사용 (권장)

npm install -g cursor-mcp-installer-free@0.1.3

설치 후 Cursor MCP 구성 파일에 추가하세요.

{ "mcpServers": { "MCP Installer": { "command": "cursor-mcp-installer-free", "type": "stdio", "args": [ "index.mjs" ] } } }

2. npx 사용 (설치 불필요)

npx를 사용하면 전역적으로 설치하지 않고도 패키지를 실행할 수 있습니다.

{ "mcpServers": { "MCP Installer": { "command": "npx", "type": "stdio", "args": [ "cursor-mcp-installer-free@0.1.3", "index.mjs" ] } } }

3. GitHub에서 직접

저장소를 복제하고 로컬로 빌드합니다.

# Clone the repository git clone https://github.com/matthewdcage/cursor-mcp-installer.git cd cursor-mcp-installer # Install dependencies and build npm install npm run build

그런 다음 로컬 설치를 사용하도록 Cursor를 구성합니다.

{ "mcpServers": { "MCP Installer": { "command": "node", "type": "stdio", "args": [ "/path/to/cursor-mcp-installer/lib/index.mjs" ] } } }

/path/to/cursor-mcp-installer 저장소를 복제한 실제 경로로 바꾸세요.

커서 MCP 구성 파일은 어디에 있나요?

커서 MCP 구성 파일은 다음 위치에 있습니다.

  • macOS/Linux : ~/.cursor/mcp.json
  • 윈도우 : %USERPROFILE%\.cursor\mcp.json

해당 파일이 존재하지 않으면 위에 나열된 설치 방법을 이용하여 파일을 만들 수 있습니다.

v0.1.3의 경로 처리 개선

버전 0.1.3에서는 MCP 서버 설치에 대한 경로 처리가 크게 개선되었습니다.

향상된 경로 해상도

  • 상대 경로와 절대 경로를 모두 적절하게 정규화합니다.
  • 공백과 특수 문자가 포함된 경로를 처리합니다.
  • 다양한 운영 체제에서 일관된 경로 형식을 보장합니다.

더 나은 스키마 감지

  • 이제 첫 번째 인수뿐만 아니라 스키마 파일의 모든 인수를 스캔합니다.
  • 더 많은 스키마 파일 확장자(.yaml, .yml, .json, .openapi)를 지원합니다.
  • 서버로 전달하기 전에 스키마 파일 경로를 적절하게 정규화합니다.

개선된 서버 검색

  • 로컬 디렉토리에서 공통 서버 진입점 감지 기능이 추가되었습니다.
  • Python 기반 MCP 서버에 대한 향상된 지원
  • 경로 관련 문제에 대한 더 나은 오류 보고

이러한 개선 사항을 통해 MCP 설치 프로그램은 모든 유형의 서버 설치에 더욱 강력해졌으며, 특히 사용자 정의 파일 경로, OpenAPI 스키마, 로컬 디렉터리 설치를 처리할 때 더욱 강력해졌습니다.

용법

설치가 완료되면 Claude 또는 Cursor를 사용하여 MCP 설치 프로그램과 상호 작용할 수 있습니다. 다음은 몇 가지 프롬프트 예시입니다.

MCP 서버로 npm 패키지 설치

Install the MCP server named mcp-server-fetch

인수를 사용하여 설치

Install the @modelcontextprotocol/server-filesystem package as an MCP server. Use ['/home/user/documents'] for the arguments

로컬 MCP 서버 설치

Install the MCP server at /home/user/projects/my-mcp-server

환경 변수를 사용하여 설치

ID: kpb2piw4eh