Skip to content

Commit 08ac8ae

Browse files
Apply suggestions from MattCHenderson code review
Co-authored-by: Matthew Henderson <[email protected]>
1 parent d582e49 commit 08ac8ae

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

articles/azure-functions/functions-bindings-mcp-trigger.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: MCP trigger for Azure Functions
2+
title: MCP tool trigger for Azure Functions
33
description: Learn how you can use a trigger endpoint to expose functions as a model content protocol (MCP) server tools in Azure Functions.
44
ms.topic: reference
55
ms.date: 05/06/2025
@@ -11,9 +11,9 @@ ms.collection:
1111
zone_pivot_groups: programming-languages-set-functions
1212
---
1313

14-
# MCP trigger for Azure Functions
14+
# MCP tool trigger for Azure Functions
1515

16-
Use the MCP trigger to tool endpoints in a [Model Content Protocol (MCP)](https://github.com/modelcontextprotocol) server that are accessed by client language models and agents to do specific tasks, such as storing or accessing code snippets. MCP clients can also subscribe to your function app to receive notifications about changes to the exposed tools.
16+
Use the MCP tool trigger to define tool endpoints in a [Model Content Protocol (MCP)](https://github.com/modelcontextprotocol) server that are accessed by client language models and agents to do specific tasks, such as storing or accessing code snippets. MCP clients can also subscribe to your function app to receive notifications about changes to the exposed tools.
1717

1818
[!INCLUDE [functions-mcp-extension-preview-note](../../includes/functions-mcp-extension-preview-note.md)]
1919

articles/azure-functions/functions-bindings-mcp.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The Azure Functions MCP extension allows you to use Azure Functions to create re
2424
## Prerequisites
2525

2626
+ The MCP tool trigger relies on Azure Queue storage provided by the [default host storage account](./storage-considerations.md) (`AzureWebJobsStorage`). When using managed identities, make sure that your function app has at least the equivalent of these role-based permissions in the host storage account: [Storage Queue Data Reader](/azure/role-based-access-control/built-in-roles#storage-queue-data-reader) and [Storage Queue Data Message Processor](/azure/role-based-access-control/built-in-roles#storage-queue-data-message-processor).
27+
+ When running locally, the MCP extension requires version 4.0.7030 of the [Azure Functions Core Tools](functions-run-local.md), or a later version.
2728
::: zone pivot="programming-language-csharp"
2829
+ Requires version 2.0.2 or later of the `Microsoft.Azure.Functions.Worker.Sdk` package.
2930

@@ -47,7 +48,7 @@ To use this experimental bundle in your app, replace the existing `extensionBund
4748

4849
```json
4950
"extensionBundle": {
50-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Experimental",
51+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
5152
"version": "[4.*, 5.0.0)"
5253
}
5354
```

0 commit comments

Comments
 (0)