UseKeen Documentation MCP Server

  • Linux
  • Apple

Integrations

  • Provides searchable access to Docker documentation for finding implementation details, examples, and specifications

  • Allows searching React documentation to find implementation details, examples, and specifications for React development

UseKeen 문서 MCP 서버(Python)

UseKeen 패키지 문서 검색 API를 위한 MCP 서버로, Claude와 다른 AI 도우미가 패키지와 서비스 문서를 검색할 수 있도록 해줍니다.

도구

  1. usekeen_package_doc_search
    • 패키지 및 서비스 문서를 검색하여 구현 세부 정보, 예제 및 사양을 찾으세요.
    • 필수 입력 사항:
      • package_name (문자열): 문서를 검색할 패키지 또는 서비스의 이름(예: 'react', 'aws-s3', 'docker')
    • 선택 입력 사항:
      • query (문자열): 패키지/서비스 설명서에서 특정 정보를 찾기 위한 검색어(예: '파일 업로드 예시', '인증 방법')
    • 반환: 관련 일치 항목, URL 및 스니펫이 포함된 문서 검색 결과

설정

  1. UseKeen 서비스에서 UseKeen API 키 가져오기
  2. 아래와 같이 API 키로 환경을 설정하세요.

설치

PyPI에서

지엑스피1

출처에서

# Clone the repository git clone https://github.com/yourusername/usekeen-python-mcp.git cd usekeen-python-mcp # Install the package pip install -e .

Claude Desktop과 함께 사용

claude_desktop_config.json 에 다음을 추가하세요.

{ "mcpServers": { "usekeen": { "command": "usekeen-mcp", "env": { "USEKEEN_API_KEY": "your_api_key_here" } } } }

VS Code를 사용한 사용

수동 설치의 경우, VS Code의 사용자 설정(JSON) 파일에 다음 JSON 블록을 추가하세요. Ctrl + Shift + P 를 누르고 Preferences: Open Settings (JSON) 입력하면 됩니다.

원하는 경우, 작업 공간의 .vscode/mcp.json 파일에 추가할 수 있습니다. 이렇게 하면 다른 사용자와 구성을 공유할 수 있습니다.

.vscode/mcp.json 파일에는 mcp 키가 필요하지 않습니다.

{ "mcp": { "inputs": [ { "type": "promptString", "id": "usekeen_api_key", "description": "UseKeen API Key", "password": true } ], "servers": { "usekeen": { "command": "usekeen-mcp", "env": { "USEKEEN_API_KEY": "${input:usekeen_api_key}" } } } } }

수동 설정

도우미 스크립트 사용

서버를 더 쉽게 실행할 수 있도록 두 가지 도우미 스크립트를 제공합니다.

  1. 로컬 실행 :
    # Make the script executable (first time only) chmod +x scripts/run_local.sh # Run the server locally ./scripts/run_local.sh
  2. Docker 실행 :
    # Make the script executable (first time only) chmod +x scripts/run_docker.sh # Run the server in Docker ./scripts/run_docker.sh

두 스크립트 모두 USEKEEN_API_KEY 가 포함된 .env 파일을 확인합니다. 제공된 .env.example 파일을 기반으로 이 파일을 생성할 수 있습니다.

Python으로 실행하기

USEKEEN_API_KEY 환경 변수를 설정하고 서버를 실행합니다.

# Set the API key export USEKEEN_API_KEY=your_api_key # Run the server python -m usekeen_mcp
Docker로 실행

API 키로 Docker 컨테이너를 빌드하고 실행합니다.

# Build the Docker image docker build -t usekeen-mcp . # Run the container docker run -e USEKEEN_API_KEY=your_api_key usekeen-mcp

환경 변수

  • USEKEEN_API_KEY : 필수. 인증을 위한 UseKeen API 키입니다.

문제 해결

오류가 발생하면 다음 사항을 확인하세요.

  1. 귀하의 UseKeen API 키는 유효하며 구성에 올바르게 설정되었습니다.
  2. UseKeen API에 접속하려면 활성 인터넷 연결이 필요합니다.
  3. UseKeen 서비스는 현재 이용 가능합니다.

특허

이 MCP 서버는 MIT 라이선스에 따라 라이선스가 부여됩니다. 즉, MIT 라이선스의 약관에 따라 소프트웨어를 자유롭게 사용, 수정 및 배포할 수 있습니다.

-
security - not tested
F
license - not found
-
quality - not tested

AI 어시스턴트가 패키지 및 서비스 문서를 검색하여 구현 세부 정보, 예제 및 사양을 찾을 수 있도록 합니다.

  1. 도구
    1. 설정
      1. 설치
        1. PyPI에서
        2. 출처에서
      2. Claude Desktop과 함께 사용
        1. VS Code를 사용한 사용
        2. 수동 설정
        3. 환경 변수
        4. 문제 해결
      3. 특허

        Related MCP Servers

        • -
          security
          A
          license
          -
          quality
          Serves as a guardian of development knowledge, providing AI assistants with curated access to latest documentation and best practices.
          Last updated -
          4
          87
          52
          TypeScript
          MIT License
        • -
          security
          A
          license
          -
          quality
          Provides code manipulation, execution, and version control capabilities. It allows AI assistants to read, write, and execute code while maintaining a history of changes.
          Last updated -
          8
          Python
          MIT License
        • -
          security
          F
          license
          -
          quality
          Enables AI assistants to interact with Metabase databases and dashboards, allowing users to list and execute queries, access data visualizations, and interact with database resources through natural language.
          Last updated -
          9
          JavaScript
          • Apple
        • A
          security
          A
          license
          A
          quality
          Provides tools for interacting with Targetprocess, a project management and agile planning platform, enabling AI assistants to search, create, and update project entities with proper validation.
          Last updated -
          5
          TypeScript
          MIT License

        View all related MCP servers

        ID: juzvvy4mac