고릴라(Gorela) 개발자 사이트 MCP 서버

by BarogoDevelopers

274 downloads
Not rated
GitHub

About

고릴라(Gorela) 연동 개발자를 위한 개발자 사이트 API 문서 제공 MCP 서버

Details

Author
BarogoDevelopers
Downloads
274
Categories
Developer Tools

- 요청된 경로의 고릴라 API 문서를 안전하게 가져와 AI 모델에 제공
- Cursor AI IDE와 같은 MCP 호스트 환경에서 바로 사용 가능
- npm 저장소 배포 버전으로 설치 없이 즉시 실행 가능
- 프로젝트 루트의 logs/mcp-server.log 파일에 로깅
- 상위 디렉토리 접근 시도 등 보안 관련 이벤트 로깅

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name 고릴라(Gorela) 개발자 사이트 MCP 서버
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Node.js 18.0.0 이상이 필요합니다. npm 저장소 버전은 npx gorela-developer-mcp-server로 실행할 수 있고, 로컬 빌드는 npm install, npm run buildnpm start로 실행합니다. Cursor AI IDE와 연동하려면 ~/.cursor/mcp.json에 MCP 서버 정보를 추가합니다. 설정만 하면 Cursor IDE가 필요할 때 자동으로 서버를 실행합니다.

fetchGorelaApiDoc

특정 URL 또는 경로에서 고릴라(Gorela) 연동 API 문서를 가져옵니다. 상대 경로나 전체 URL을 지정할 수 있습니다.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "\uace0\ub9b4\ub77c(gorela) \uac1c\ubc1c\uc790 \uc0ac\uc774\ud2b8 mcp \uc11c\ubc84": {
            "gorela-developer-mcp-server": {
                "command": "npx",
                "args": [
                    "gorela-developer-mcp-server"
                ]
            }
        }
    }
}

McpServers

{
    "gorela-developer-mcp-server": {
        "command": "npx",
        "args": [
            "gorela-developer-mcp-server"
        ]
    }
}

고릴라(Gorela) 개발자 사이트 MCP 서버

이 프로젝트는 Model Context Protocol을 사용하여 구현된 MCP 서버(MCP Server)로, 고릴라(Gorela) API 문서를 AI 모델에 컨텍스트로 제공합니다.

> 고릴라(Gorela)는 바로고(BAROGO)에서 제공하는 배달 중계 플랫폼으로, 주문 제휴사와 배달대행사를 연결하는 API를 제공합니다.

Cursor AI IDE와 같은 MCP 호스트 환경에서 AI가 고릴라 API에 대해 이해하고 응답할 수 있도록 지원합니다.

목차

- 기능
- 요구사항
- 설치
- 빌드
- 실행
- Cursor AI IDE와 연동하기
- 문제 해결

기능

이 MCP 서버는 다음 기능을 제공합니다:

- 요청된 경로의 고릴라 API 문서를 안전하게 가져와 AI 모델에 컨텍스트로 제공

요구사항

- Node.js 18.0.0 이상

설치

의존성 패키지 설치:

npm install

빌드

npm run build

실행

npm 저장소 배포 버전 실행 (권장)

npm 저장소에 배포된 버전은 설치 없이 바로 실행할 수 있습니다:

npx gorela-developer-mcp-server

로컬 빌드 버전 실행

로컬에서 빌드한 버전 실행:

npm start

실행 후 로그는 프로젝트 루트 디렉토리의 logs/mcp-server.log 파일에서 확인할 수 있습니다. 로그 경로는 실행 환경에 상관없이 항상 프로젝트 루트를 기준으로 저장됩니다.

개발 모드로 실행:

npm run dev

Cursor AI IDE와 연동하기

이 MCP 서버는 Cursor AI IDE(MCP Host)에 연결되어 AI 모델이 고릴라 API 문서를 컨텍스트로 활용할 수 있게 합니다.

1. Cursor AI 설정

Cursor AI IDE의 Settings 메뉴를 통해 MCP 서버를 등록할 수 있습니다.

중요: 설정만 하면 됩니다. 사용자가 별도로 서버를 실행할 필요가 없습니다. Cursor IDE가 필요할 때 자동으로 서버를 실행합니다.

설정 단계:

1. Cursor AI IDE에서 Settings 메뉴로 이동합니다.
2. "MCP" 섹션을 찾습니다.
3. "Add new global MCP server" 버튼을 클릭합니다.
4. 그러면 ~/.cursor/mcp.json 파일이 열립니다.

이 파일에 다음과 같이 고릴라 MCP 서버 정보를 추가합니다:

방법 1: npx 사용 (권장)

{
  "mcpServers": {
    "gorela-api-docs": {
      "name": "Gorela Developer Site MCP",
      "type": "stdio",
      "command": "npx",
      "args": ["gorela-developer-mcp-server"]
    }
  }
}

방법 2: 직접 경로 지정

이 방법을 사용하려면 먼저 프로젝트를 설치하고 빌드해야 합니다:

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.