Getting Started with Remote MCP Servers using Azure Functions (Python)
@raorugan
About Getting Started with Remote MCP Servers using Azure Functions (Python)
MCP server sample travel buddy app hosted on Azure Functions on Azure Container Apps and MCP extension
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"MCPonFuncOnACA": {
"command": "docker",
"args": [
"run",
"-p",
"10000:10000",
"-p",
"10001:10001",
"-p",
"10002:10002",
"\\"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is Getting Started with Remote MCP Servers using Azure Functions (Python)?
A quickstart template to build and deploy a custom remote MCP server to Azure Functions using Python. It is secured by design with keys and HTTPS, and supports options for OAuth, API Management, and VNET isolation.
How to use Getting Started with Remote MCP Servers using Azure Functions (Python)?
Set up prerequisites: Python 3.11+, Azure Functions Core Tools, and Azurite storage emulator. Run locally by changing to src, running pip install -r requirements.txt, then func start. Connect clients via VS Code Copilot Edits or MCP Inspector using the SSE endpoint http://localhost:7071/runtime/webhooks/mcp/sse. Deploy to Azure with azd up or through Azure Container Apps documentation.
Key features of Getting Started with Remote MCP Servers using Azure Functions (Python)
- Quickstart template for a remote MCP server
- Built with Azure Functions and Python
- Secure by design with keys and HTTPS
- Supports local development and cloud deployment
- Includes sample travel MCP tools via RapidAPI
- Options for OAuth, API Management, and VNET isolation
Use cases of Getting Started with Remote MCP Servers using Azure Functions (Python)
- Build a custom remote MCP server for LLM tools
- Securely expose MCP endpoints in Azure
- Integrate travel APIs as MCP tools
- Experiment with remote MCP servers using Azure Functions
FAQ from Getting Started with Remote MCP Servers using Azure Functions (Python)
What prerequisites are needed?
Python 3.11 or higher, Azure Functions Core Tools, and an Azure Storage emulator (Azurite). Visual Studio Code with the Azure Functions extension is optional for local debugging.
How do I run the server locally?
Start Azurite, then in the src folder run pip install -r requirements.txt followed by func start. The server listens on http://localhost:7071/runtime/webhooks/mcp/sse.
How do I connect an MCP client?
Use the SSE transport with the endpoint URL. For local testing, the URL is http://localhost:7071/runtime/webhooks/mcp/sse. For remote access, include the system key as a code query parameter or as the x-functions-key header.
How do I deploy to Azure?
Run azd up in the project root, or follow the Azure documentation to provision Azure Functions on Azure Container Apps. The deployed endpoint will be secured with a system key by default.
What sample tools are included?
Two MCP tools are defined: get_attractions and get_attractions_reviews, which call the RapidAPI Booking.com API to retrieve travel details.
More Cloud & Infrastructure MCP servers
Azure DevOps MCP Server
Tiberriver256An MCP server for Azure DevOps
AWS MCP Servers
awslabsOpen source MCP Servers for AWS
Run Model Context Protocol (MCP) servers with AWS Lambda
awslabsRun existing Model Context Protocol (MCP) stdio-based servers in AWS Lambda functions
AWS Model Context Protocol (MCP) Server
alexei-ledA lightweight service that enables AI assistants to execute AWS CLI commands (in safe containerized environment) through the Model Context Protocol (MCP). Bridges Claude, Cursor, and other MCP-aware AI tools with AWS CLI for enhanced cloud infrastructure management.
MCP Gateway
mcp-ecosystem🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.
Comments