Get the FREE Ultimate OpenClaw Setup Guide →

azure-functions-notes

MCP server from arashjalalat/azure-functions-notes-mcp-server

Installation
Run this command in your terminal to add the MCP server to Claude Code.
Run in terminal:
Command
claude mcp add --transport stdio arashjalalat-azure-functions-notes-mcp-server dotnet NotesMcp/NotesMcp.dll \
  --env AZURE_SUBSCRIPTION_ID="Your Azure subscription ID" \
  --env AZURE_FUNCTIONS_WEBSITE_SITE_NAME="Function App name (for local or Azure deployment)"

How to use

This MCP server is built on Azure Functions using .NET 8.0 and exposes a Model Context Protocol (MCP) endpoint for managing notes. It implements tools such as save_note, get_note, list_notes, search_notes, and delete_note to create, retrieve, list, search, and remove notes respectively. You can interact with these tools via an MCP client (for example, within GitHub Copilot Chat) by sending structured prompts that invoke the corresponding tool by name. The server is designed to work with the MCP runtime in supported environments (local development via Functions Core Tools or deployed to Azure). When running locally, the Function App listens on a local URL (e.g., http://localhost:7071/runtime/webhooks/mcp) and can be wired into your MCP client configuration.

How to install

Prerequisites for local development:

Installation steps:

  1. Clone the repository:
git clone <repository-url>
cd azure-functions-notes-mcp-server
  1. Build and restore dependencies:
dotnet restore
  1. Configure local settings for the Function App (copy sample and adjust as needed):
cp NotesMcp/local.settings.sample.json NotesMcp/local.settings.json
  1. Run the project locally (within the repository root):
cd NotesMcp
func start
  1. If you plan to deploy to Azure using azd, install and initialize your environment, then deploy:
azd init
azd auth login
azd up
  1. After deployment, note the Function App URL provided by azd and configure your MCP client accordingly. For local testing, you can use the local webhooks URL shown when running func start.

Additional notes

Notes and tips:

  • The MCP tools operate via HTTP endpoints exposed by the Azure Functions app. Ensure network access to the Function App URL from your MCP client.
  • In local development, the runtime URL is typically http://localhost:7071/runtime/webhooks/mcp. When deployed, use the Function App URL with the appropriate path.
  • Environment variables can be used to customize subscription information, monitoring, or feature flags. Example variables include AZURE_SUBSCRIPTION_ID and AZURE_FUNCTIONS_WEBSITE_SITE_NAME.
  • If you modify infrastructure, update the Bicep templates under infra to reflect resource changes and redeploy with azd.
  • For production, enable Application Insights and RBAC as shown in the README to monitor and secure the MCP server.
  • If you encounter port conflicts locally, verify that no other MCP server is occupying the 7071 port and adjust local.settings.json or function.json as needed.

Related MCP Servers

Sponsor this space

Reach thousands of developers