mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
f9f630829a
- Update ModelContextProtocol NuGet package from 0.4.0-preview.3 to 0.8.0-preview.1 - Update System.Net.ServerSentEvents from 10.0.1 to 10.0.3 - Fix OAuth config to use DynamicClientRegistration in Agent_MCP_Server_Auth - Fix incorrect sample name references in README files Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
f9f630829a
ยท
2026-02-18 13:53:44 +00:00
History
Model Context Protocol Sample
This example demonstrates how to use tools from a Model Context Protocol server with Agent Framework.
MCP is an open protocol that standardizes how applications provide context to LLMs.
For information on Model Context Protocol (MCP) please refer to the documentation.
The sample shows:
- How to connect to an MCP Server
- Retrieve the list of tools the MCP Server makes available
- Convert the MCP tools to
AIFunction's so they can be added to an agent - Invoke the tools from an agent using function calling
Configuring Environment Variables
Set the following environment variables:
$env:AZURE_OPENAI_ENDPOINT="https://your-resource.openai.azure.com/" # Replace with your Azure OpenAI resource endpoint
$env:AZURE_OPENAI_DEPLOYMENT_NAME="gpt-4o-mini" # Optional, defaults to gpt-4o-mini
Setup and Running
Run the Agent_MCP_Server sample
dotnet run