{"id":23840285,"url":"https://github.com/dkmaker/mcp-function-app-tester","last_synced_at":"2025-10-09T21:34:14.084Z","repository":{"id":268936294,"uuid":"905910272","full_name":"dkmaker/mcp-function-app-tester","owner":"dkmaker","description":"A MCP Server to test local development of function app apis","archived":false,"fork":false,"pushed_at":"2024-12-23T13:12:02.000Z","size":46,"stargazers_count":4,"open_issues_count":1,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-11T13:09:46.147Z","etag":null,"topics":["mcp","mcpe-server"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dkmaker.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-19T19:11:56.000Z","updated_at":"2025-01-16T18:01:22.000Z","dependencies_parsed_at":"2024-12-23T14:23:45.110Z","dependency_job_id":"d77006fe-bfbb-432d-a3ba-592033d60b57","html_url":"https://github.com/dkmaker/mcp-function-app-tester","commit_stats":null,"previous_names":["zenturacp/mcp-function-app-tester","dkmaker/mcp-function-app-tester"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/dkmaker/mcp-function-app-tester","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkmaker%2Fmcp-function-app-tester","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkmaker%2Fmcp-function-app-tester/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkmaker%2Fmcp-function-app-tester/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkmaker%2Fmcp-function-app-tester/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dkmaker","download_url":"https://codeload.github.com/dkmaker/mcp-function-app-tester/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkmaker%2Fmcp-function-app-tester/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264958623,"owners_count":23689035,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp","mcpe-server"],"created_at":"2025-01-02T17:30:49.414Z","updated_at":"2025-10-09T21:34:09.051Z","avatar_url":"https://github.com/dkmaker.png","language":"JavaScript","readme":"# MCP Function App Tester\r\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\r\n\r\nA TypeScript-based MCP server that enables testing of Azure Function Apps through Cline. This tool allows you to test and interact with Function App endpoints directly from your development environment.\r\n\r\n\u003ca href=\"https://glama.ai/mcp/servers/la0u86zue0\"\u003e\r\n  \u003cimg width=\"380\" height=\"200\" src=\"https://glama.ai/mcp/servers/la0u86zue0/badge\" /\u003e\r\n\u003c/a\u003e\r\n\r\n## Installation\r\n\r\n```bash\r\nnpm install dkmaker-mcp-function-app-tester\r\n```\r\n\r\n## Features\r\n\r\n- Test Function App endpoints with different HTTP methods\r\n- Support for GET, POST, PUT, and DELETE requests\r\n- Detailed response information\r\n- Custom header support\r\n- Request body handling for POST/PUT methods\r\n- Authentication support:\r\n  - Basic Authentication (username/password)\r\n  - Bearer Token Authentication\r\n  - API Key Authentication (custom header)\r\n\r\n## Authentication\r\n\r\nThe server supports two authentication methods that can be configured via environment variables:\r\n\r\n### Basic Authentication\r\nSet both environment variables to enable Basic Authentication:\r\n```bash\r\nAUTH_BASIC_USERNAME=your-username\r\nAUTH_BASIC_PASSWORD=your-password\r\n```\r\n\r\n### Bearer Token\r\nSet this environment variable to enable Bearer Token authentication:\r\n```bash\r\nAUTH_BEARER=your-token\r\n```\r\n\r\n### API Key\r\nSet both environment variables to enable API Key authentication:\r\n```bash\r\nAUTH_APIKEY_HEADER_NAME=X-API-Key  # The header name to use (e.g., X-API-Key, api-key, etc.)\r\nAUTH_APIKEY_VALUE=your-api-key     # The actual API key value\r\n```\r\n\r\nNote: Authentication precedence order:\r\n1. Basic Authentication (if username and password are set)\r\n2. Bearer Token (if token is set and Basic Auth is not configured)\r\n3. API Key (if header name and value are set, and no other auth is configured)\r\n\r\n## Usage\r\n\r\nOnce installed, you can use the Function App Tester through Cline. The server provides tools to test endpoints at the base URL: `http://localhost:7071/api`\r\n\r\nExample usage:\r\n\r\n```typescript\r\n// Test a GET endpoint\r\n{\r\n  \"method\": \"GET\",\r\n  \"endpoint\": \"/users\"\r\n}\r\n\r\n// Test a POST endpoint with body\r\n{\r\n  \"method\": \"POST\",\r\n  \"endpoint\": \"/users\",\r\n  \"body\": {\r\n    \"name\": \"John Doe\",\r\n    \"email\": \"john@example.com\"\r\n  }\r\n}\r\n\r\n// Test with custom headers\r\n{\r\n  \"method\": \"GET\",\r\n  \"endpoint\": \"/secure/data\",\r\n  \"headers\": {\r\n    \"Authorization\": \"Bearer token123\"\r\n  }\r\n}\r\n```\r\n\r\n## Development\r\n\r\n1. Clone the repository:\r\n```bash\r\ngit clone https://github.com/dkmaker/mcp-function-app-tester.git\r\ncd mcp-function-app-tester\r\n```\r\n\r\n2. Install dependencies:\r\n```bash\r\nnpm install\r\n```\r\n\r\n3. Build the project:\r\n```bash\r\nnpm run build\r\n```\r\n\r\nFor development with auto-rebuild:\r\n```bash\r\nnpm run watch\r\n```\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\r\n","funding_links":[],"categories":["Cloud Platforms","APIs and HTTP Requests","🌐 Web Development"],"sub_categories":["How to Submit"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdkmaker%2Fmcp-function-app-tester","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdkmaker%2Fmcp-function-app-tester","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdkmaker%2Fmcp-function-app-tester/lists"}