Skip to main content
Glama
dkmaker

mcp-function-app-tester

by dkmaker

MCP 関数アプリテスター

ライセンス: MIT

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

インストール

npm install dkmaker-mcp-function-app-tester

Related MCP server: MySQL Server MCP Server

特徴

  • さまざまな 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
license - permissive license
B
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    A TypeScript-based MCP server that enables testing of REST APIs through Cline. This tool allows you to test and interact with any REST API endpoints directly from your development environment.
    1
    100
    99
    MIT
  • -
    license
    -
    quality
    -
    maintenance
    An MCP server that wraps the Azure CLI. As LLMs are very good at generating Azure CLI commands, this server allows your LLM to list resources, update/create/delete them, fix errors (by looking at the logs), fix security issues...
    81
  • A
    license
    A
    quality
    D
    maintenance
    A Node.js/TypeScript MCP server that facilitates interactive communication between LLMs and users, allowing AI assistants to request user input, display notifications, and manage command-line chat sessions.
    5
    53
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • A TypeScript MCP server for Home Assistant, enabling programmatic management of entities, automati…

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

  • The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.

View all MCP Connectors

Latest Blog Posts

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