{
"mcpServers": {
"azure-functions-mcp-server-sample": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AzureFunctionsを利用したMCPサーバー構築サンプルコード
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 161 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Server for kubernetes management commands
Model Context Protocol (MCP) server for Kubernetes and OpenShift
The power of Claude Code / GeminiCLI / CodexCLI + [Gemini / OpenAI / OpenRouter / Azure / Grok / Ollama / Custom Model / All Of The Above] working as one.
MCP Security Weekly
Get CVE alerts and security updates for Azure Functions Mcp Server Sample and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Azure Functions (.NET 8) を使った Model Context Protocol (MCP) サーバーの実装例です。
このプロジェクトは、Azure Functions の MCP 拡張機能を使用して、Tour de Azure のタイトル情報を取得する MCP ツールを提供します。
Dev Container が起動すると、自動的に以下が実行されます:
dotnet restore)local.settings.json ファイルを作成します:cd mcp-server
local.settings.json を以下の内容で作成:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated"
}
}
dotnet restore
dotnet build
func start
azure-functions-dotnet/
├── .devcontainer/ # Dev Container設定
├── .vscode/ # VS Code設定(tasks, launch)
├── mcp-server/ # Azure Functions プロジェクト
│ ├── Program.cs # アプリケーションエントリポイント
│ ├── TourDeAzureTrigger.cs # MCP ツール実装
│ ├── mcp-server.csproj # プロジェクトファイル
│ ├── host.json # Functions ホスト設定
│ └── local.settings.json # ローカル開発設定(要作成)
└── README.md
Microsoft.Azure.Functions.Worker (v2.1.0)Microsoft.Azure.Functions.Worker.Extensions.Mcp (v1.0.0)Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore (v2.1.0)Microsoft.ApplicationInsights.WorkerService (v2.23.0)Tour de Azure の各回のタイトルを取得します。
パラメータ:
edition (int, required): 回数(1, 2, 3...)使用例:
{
"edition": 1
}
レスポンス:
AI Document Intelligenceに入門しよう!
cd mcp-server
dotnet build
cd mcp-server
func start
注意: 初回実行時は local.settings.json ファイルが必要です。上記のセットアップセクションを参照してください。
ローカルストレージエミュレータ(Azurite)が自動的に起動します:
VS Code のデバッグ機能を使用:
このプロジェクトはサンプルコードです。