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から

pip install usekeen-mcp

ソースから

# 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 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}" } } } } }

手動設定

ヘルパースクリプトの使用

サーバーの実行を容易にするために、2 つのヘルパー スクリプトを提供しています。

  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