Skip to content

Commit a6638a8

Browse files
committed
Acrolinx
1 parent 2b0f367 commit a6638a8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: MCP trigger for Azure Functions
3-
description: Learn how you can use a trigger endpoint to expose a functions as a model content protocol (MCP) server tool in Azure Functions.
3+
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
66
ms.custom:
@@ -13,7 +13,7 @@ zone_pivot_groups: programming-languages-set-functions
1313

1414
# MCP trigger for Azure Functions
1515

16-
Use the MCP trigger to create endpoints in a [Model Content Protocol (MCP)](https://github.com/modelcontextprotocol) server that are accessed by client LLMs and agents to do specific tasks, such as storing or accessing code snippets. These MCP clients can also subscribe to your MCP server (your function app) to receive notifications about changes to the exposed APIs.
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.
1717

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

@@ -136,7 +136,7 @@ The trigger supports these binding options, which are defined in your code:
136136

137137
| Options | Description |
138138
|-----------------------|-------------|
139-
| **type** | Must be `mcpToolTrigger`. Only used with generic definitions. |
139+
| **type** | Must be set to `mcpToolTrigger`. Only used with generic definitions. |
140140
| **toolName** | (Required) The name of the MCP server tool exposed by the function endpoint. |
141141
| **description** | A description of the MCP server tool exposed by the function endpoint. |
142142
| **toolProperties** | An array of `toolProperty` objects that expose properties of the tool to clients. |
@@ -151,7 +151,7 @@ See the [Example section](#example) for complete examples.
151151

152152
::: zone pivot="programming-language-csharp"
153153

154-
The MCP protocol enables an MCP server to make known to clients additional properties of a tool endpoint. In C#, you can define one or more tool properties by applying the `McpToolProperty` attribute to input binding-style parameters in your function.
154+
The MCP protocol enables an MCP server to make known to clients other properties of a tool endpoint. In C#, you can define one or more tool properties by applying the `McpToolProperty` attribute to input binding-style parameters in your function.
155155

156156
The `McpToolPropertyAttribute` type supports these properties:
157157

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ zone_pivot_groups: programming-languages-set-functions
1414

1515
# MCP bindings for Azure Functions overview
1616

17-
The [Model Content Protocol (MCP)](https://github.com/modelcontextprotocol) is a client-server protocol intended to enable language models and agents to more efficiently discover and leverage external data sources and tools.
17+
The [Model Content Protocol (MCP)](https://github.com/modelcontextprotocol) is a client-server protocol intended to enable language models and agents to more efficiently discover and use external data sources and tools.
1818

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

21-
The Azure Functions MCP extension allows you to use Azure Functions to create custom MCP servers. When acting as an MCP server, your function app defines a set of function endpoints that are MCP triggers, which LLMs and agents can access to do specific tasks, such as storing or accessing code snippets. These MCP clients can also subscribe to your MCP server app to receive notifications about changes to the exposed APIs.
21+
The Azure Functions MCP extension allows you to use Azure Functions to create custom MCP servers. Your function app implements an MCP server by defining a set of MCP tool endpoints that are MCP trigger functions. MCP clients, such as language models and agents, can query and access these tools to do specific tasks, such as storing or accessing code snippets. MCP clients can also subscribe to your app to receive notifications about changes to the exposed tools.
2222

2323
[!INCLUDE [functions-mcp-extension-powershell-note](../../includes/functions-mcp-extension-powershell-note.md)]
2424
::: zone pivot="programming-language-csharp"
@@ -72,7 +72,7 @@ To use this experimental bundle in your app, replace the existing `extensionBund
7272

7373
| Property | Description |
7474
| ----- | ----- |
75-
| **instructions** | Decribes to clients how to access the server. |
75+
| **instructions** | Describes to clients how to access the server. |
7676
| **serverName** | A friendly name for the server. |
7777
| **serverVersion** | Current version of the server. |
7878

0 commit comments

Comments
 (0)