mcp-function-app-tester

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

  • The MCP server is built with TypeScript, but it doesn't integrate with TypeScript as a service.

MCP 関数アプリテスター

Cline を介して Azure Function App のテストを可能にする TypeScript ベースの MCP サーバーです。このツールを使用すると、開発環境から直接 Function App エンドポイントをテストし、操作することができます。

インストール

npm install dkmaker-mcp-function-app-tester

特徴

  • さまざまな HTTP メソッドを使用して Function App エンドポイントをテストする
  • GET、POST、PUT、DELETEリクエストのサポート
  • 詳細な回答情報
  • カスタムヘッダーのサポート
  • POST/PUTメソッドのリクエストボディの処理
  • 認証サポート:
    • 基本認証(ユーザー名/パスワード)
    • ベアラートークン認証
    • APIキー認証(カスタムヘッダー)

認証

サーバーは、環境変数を介して構成できる 2 つの認証方法をサポートしています。

基本認証

両方の環境変数を設定して、基本認証を有効にします。

AUTH_BASIC_USERNAME=your-username AUTH_BASIC_PASSWORD=your-password

無記名トークン

ベアラートークン認証を有効にするには、この環境変数を設定します。

AUTH_BEARER=your-token

APIキー

API キー認証を有効にするには、両方の環境変数を設定します。

AUTH_APIKEY_HEADER_NAME=X-API-Key # The header name to use (e.g., X-API-Key, api-key, etc.) AUTH_APIKEY_VALUE=your-api-key # The actual API key value

注: 認証の優先順位:

  1. 基本認証(ユーザー名とパスワードが設定されている場合)
  2. ベアラートークン(トークンが設定されていて、Basic 認証が設定されていない場合)
  3. API キー (ヘッダー名と値が設定されていて、他の認証が設定されていない場合)

使用法

インストールが完了すると、Cline 経由で Function App Tester を使用できるようになります。サーバーは、ベース URL ( http://localhost:7071/apiでエンドポイントをテストするためのツールを提供します。

使用例:

// Test a GET endpoint { "method": "GET", "endpoint": "/users" } // Test a POST endpoint with body { "method": "POST", "endpoint": "/users", "body": { "name": "John Doe", "email": "john@example.com" } } // Test with custom headers { "method": "GET", "endpoint": "/secure/data", "headers": { "Authorization": "Bearer token123" } }

発達

  1. リポジトリをクローンします。
git clone https://github.com/dkmaker/mcp-function-app-tester.git cd mcp-function-app-tester
  1. 依存関係をインストールします:
npm install
  1. プロジェクトをビルドします。
npm run build

自動リビルドを使用した開発の場合:

npm run watch

ライセンス

このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

Cline を介して Azure Table Storage と直接やり取りできる TypeScript ベースの MCP サーバーです。このツールを使用すると、Azure Storage テーブル内のデータのクエリと管理が可能になります。

  1. Installation
    1. Features
      1. Authentication
        1. Basic Authentication
        2. Bearer Token
        3. API Key
      2. Usage
        1. Development
          1. License
            ID: la0u86zue0