Azure Function Apps
About
Enables testing of Azure Function Apps through a command-line interface supporting various HTTP methods, custom headers, and multiple authentication options.
Details
- Author
- dkmaker
- Repository
- dkmaker/mcp-function-app-tester
- GitHub stars
- 3
- Downloads
- 312
- License
- MIT License
- Categories
- Design, Developer Tools, AI, Infrastructure, API, Other
- Tags
- #web, #integration
Jump to
- Test Function App endpoints with different HTTP methods
- Support for GET, POST, PUT, and DELETE requests
- Detailed response information
- Custom header support
- Request body handling for POST/PUT methods
- Authentication support:
- Basic Authentication (username/password)
- Bearer Token Authentication
- API Key Authentication (custom header)
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Azure Function AppsCommand (node, npx, python, etc.)npxArguments-
Argument 1
-y -
Argument 2
@highlight/mcp-server
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
``bash
npm install dkmaker-mcp-function-app-tester
The server supports two authentication methods that can be configured via environment variables:
Set both environment variables to enable Basic Authentication:
bash
AUTH_BASIC_USERNAME=your-username
AUTH_BASIC_PASSWORD=your-password
``
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"azure function apps": {
"env": {},
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
}
}
Linux
{
"env": [],
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
Macos
{
"env": [],
"args": [
"-y",
"@highlight/mcp-server"
],
"command": "npx"
}
Windows
{
"env": [],
"args": [
"/c",
"npx",
"-y",
"@highlight/mcp-server"
],
"command": "cmd"
}
MCP Function App Tester
Installation
``bash
npm install dkmaker-mcp-function-app-tester
`
Features
- Test Function App endpoints with different HTTP methods
- Support for GET, POST, PUT, and DELETE requests
- Detailed response information
- Custom header support
- Request body handling for POST/PUT methods
- Authentication support:
- Basic Authentication (username/password)
- Bearer Token Authentication
- API Key Authentication (custom header)
Authentication
The server supports two authentication methods that can be configured via environment variables:
Basic Authentication
Set both environment variables to enable Basic Authentication:
`bash
AUTH_BASIC_USERNAME=your-username
AUTH_BASIC_PASSWORD=your-password
`
Bearer Token
Set this environment variable to enable Bearer Token authentication:
`bash
AUTH_BEARER=your-token
`
API Key
Set both environment variables to enable API Key authentication:
`bash
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
``Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




