Skip to main content
Glama

mcp-function-app-tester

by dkmaker

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ファイルを参照してください。

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

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.

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

  1. インストール
    1. 特徴
      1. 認証
        1. 基本認証
        2. 無記名トークン
        3. APIキー
      2. 使用法
        1. 発達
          1. ライセンス

            Related MCP Servers

            • A
              security
              A
              license
              A
              quality
              Enables interaction with Azure Table Storage directly through Cline. This tool allows you to query and manage data in Azure Storage Tables.
              Last updated -
              3
              1
              4
              JavaScript
              MIT License
            • A
              security
              A
              license
              A
              quality
              Integrates Cline with Azure DevOps services, enabling access to work items, repositories, and pull requests through configurable MCP tools.
              Last updated -
              15
              11
              TypeScript
              MIT License
            • -
              security
              A
              license
              -
              quality
              An MCP server that provides access to Azure Data Explorer (ADX) clusters, allowing users to list tables, execute queries, and retrieve schema information.
              Last updated -
              Python
              MIT License
            • -
              security
              F
              license
              -
              quality
              Provides tools for listing and querying Azure resources directly from any MCP client, allowing you to efficiently browse your Azure infrastructure and analyze costs without leaving your workflow.
              Last updated -
              Python
              • Apple
              • Linux

            View all related MCP servers

            MCP directory API

            We provide all the information about MCP servers via our MCP API.

            curl -X GET 'https://glama.ai/api/mcp/v1/servers/dkmaker/mcp-function-app-tester'

            If you have feedback or need assistance with the MCP directory API, please join our Discord server