Files
agent-framework/dotnet/samples/GettingStarted/ModelContextProtocol/Agent_MCP_Server
T
Mark Wallace 32e054f1fe Rename AI Agent packages to use Microsoft.Agents.AI (#913)
* Rename AI Agent packages to use Microsoft.Agents.AI

* Fix for build

* Fix formatting

* Fix formatting

* Ignore in VSTHRD200 in migration samples

* Ignore in VSTHRD200 in migration samples

* Add some missing projects and run format

* Fix build errors

* Address code review feedback

* Fix merge issues

---------

Co-authored-by: Mark Wallace <markwallace@microsoft.com>
32e054f1fe ยท 2025-09-25 19:31:25 +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:

  1. How to connect to an MCP Server
  2. Retrieve the list of tools the MCP Server makes available
  3. Convert the MCP tools to AIFunction's so they can be added to an agent
  4. 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 ModelContextProtocolPluginAuth sample

dotnet run