MCP server using Azure Function
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-serverless-core": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server using Azure Function
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Server for GCP environment for interacting with various Observability APIs.
Verified cloud cost forecasting for AI agents. AWS, GCP, Azure pricing matrix.
IAM Policy Autopilot is an open source static code analysis tool that helps you quickly create baseline AWS IAM policies that you can refine as your application evolves. This tool is available as a command-line utility and MCP server for use within AI coding assistants for quickly building IAM policies.
MCP Security Weekly
Get CVE alerts and security updates for MCP Serverless Core and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP-Serverless-Core is a .NET isolated Azure Functions project that exposes an MCP tool endpoint.
It includes a sample MCP tool (FibonacciTool) that generates Fibonacci numbers and can be used as a starter template for building custom MCP tools.
This project demonstrates how to host Model Context Protocol (MCP) tools on Azure Functions using:
dotnet-isolated)net10.0)Microsoft.Azure.Functions.Worker.Extensions.McpThe sample tool accepts a count parameter and returns a Fibonacci sequence.
net10.0)local.settings.json at the project root.{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated"
}
}
Notes:
AzureWebJobsStorage defaults to local emulator mode.If you want to use local storage emulation, start Azurite first:
docker compose up -d
Then run the Azure Function app:
func start
dotnet build
Program.cs: Function host startup and dependency registration.Tools/FibonacciTool.cs: Sample MCP tool implementation.host.json: Host-level settings, including MCP extension configuration.local.settings.json: Local app settings and storage configuration.Tool name: FibonacciTool
Description: Generates Fibonacci numbers up to the specified count.
Example response:
count = 5 -> 0, 1, 1, 2, 3count = 1 -> 0host.json under extensions.mcp.local.settings.json (do not commit secrets).