Integrating Model Context Protocol Tools with Semantic Kernel
March 31, 2025 by Anuraj
dotnet AI SemanticKernel MCP
In this blog post, we’ll learn about Model Context Protocol (MCP) and how we can integrate Model Context Protocol Tools with Semantic Kernel. MCP is like a special rule book that helps AI programs understand information better. Imagine it like a USB-C port on your tablet or laptop. Just like USB-C lets you plug in chargers, headphones, or other devices easily, MCP helps AI connect to different sources of information in a simple and organized way. Learn more about MCP here. MCP will help our agents with external systems like GitHub or any other MCP servers available. We can get the list of MCP servers from here. In this demo I will be using Everything MCP server. It is an example MCP server for demo purposes.
In the existing Agent project - we can add the nuget package reference of ModelContextProtocol
. We can do it with the command - dotnet add package ModelContextProtocol --prerelease
. Next we can get the tools using the following code.
await using var everythingsClient = await McpClientFactory.CreateAsync
(
new()
{
Id = "everything",
Name = "EveryThing",
TransportType = "stdio",
TransportOptions = new Dictionary<string, string>
{
["command"] = "npx",
["arguments"] = "-y @modelcontextprotocol/server-everything"
}
},
new()
{
ClientInfo = new() { Name = "EverythingClient", Version = "1.0.0" }
}
);
Next we can get the tools and enumerate the name and description.
Console.WriteLine($"Found {tools.Count} tools");
foreach (var tool in tools)
{
Console.WriteLine($"Tool: {tool.Name} Description: {tool.Description}");
}
Here is the screenshot of the application running on my machine.
Next we need to associate these tools to Semantic Kernel. We can do this using the following code.
kernel.Plugins.AddFromFunctions("Everything", tools.Select(t => t.AsKernelFunction()));
This above code snippet will convert the MCP Tools to Semantic Kernel tools using the AsKernelFunction
method.
Now we can ask question like this - Echo this message - Message printed using MCP Everything server
which will find the Echo plugin and send the data to the MCP server - which will display a message like this.
This way we can use MCP Tools with Semantic Kernel in C#. Currently it is depends on npx - it is a package runner tool that comes with npm (version 5.2.0 and above). It allows you to execute packages. In the next blog post we will learn about how to create an MCP server and MCP client using .NET
Happy Programming
Copyright © 2025 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub