mcp-function-app-tester
MCP 関数アプリテスター
Cline を介して Azure Function App のテストを可能にする TypeScript ベースの MCP サーバーです。このツールを使用すると、開発環境から直接 Function App エンドポイントをテストし、操作することができます。
インストール
npm install dkmaker-mcp-function-app-testerRelated 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-tokenAPIキー
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注: 認証の優先順位:
基本認証(ユーザー名とパスワードが設定されている場合)
ベアラートークン(トークンが設定されていて、Basic 認証が設定されていない場合)
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"
}
}発達
リポジトリをクローンします。
git clone https://github.com/dkmaker/mcp-function-app-tester.git
cd mcp-function-app-tester依存関係をインストールします:
npm installプロジェクトをビルドします。
npm run build自動リビルドを使用した開発の場合:
npm run watchライセンス
このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseAqualityFmaintenanceA 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.110099MIT
- Alicense-qualityDmaintenanceA TypeScript-based MCP server that facilitates SQL query execution and MySQL database connectivity using environment variables.85MIT
- -license-quality-maintenanceAn 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
- AlicenseAqualityDmaintenanceA 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.5531MIT
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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