134 lines
4.8 KiB
C#
134 lines
4.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.SemanticKernel;
|
|
using ModelContextProtocol;
|
|
using ModelContextProtocol.Client;
|
|
using ModelContextProtocol.Protocol;
|
|
|
|
namespace MCPClient.Samples;
|
|
|
|
internal abstract class BaseSample
|
|
{
|
|
/// <summary>
|
|
/// Creates an MCP client and connects it to the MCPServer server.
|
|
/// </summary>
|
|
/// <param name="kernel">Optional kernel instance to use for the MCP client.</param>
|
|
/// <param name="samplingRequestHandler">Optional handler for MCP sampling requests.</param>
|
|
/// <returns>An instance of <see cref="IMcpClient"/>.</returns>
|
|
protected static Task<McpClient> CreateMcpClientAsync(
|
|
Kernel? kernel = null,
|
|
Func<Kernel, CreateMessageRequestParams?, IProgress<ProgressNotificationValue>, CancellationToken, Task<CreateMessageResult>>? samplingRequestHandler = null)
|
|
{
|
|
KernelFunction? skSamplingHandler = null;
|
|
|
|
// Create and return the MCP client
|
|
return McpClient.CreateAsync(
|
|
clientTransport: new StdioClientTransport(new StdioClientTransportOptions
|
|
{
|
|
Name = "MCPServer",
|
|
Command = GetMCPServerPath(), // Path to the MCPServer executable
|
|
}),
|
|
clientOptions: samplingRequestHandler != null ? new McpClientOptions()
|
|
{
|
|
Handlers = new()
|
|
{
|
|
SamplingHandler = InvokeHandlerAsync,
|
|
},
|
|
} : null
|
|
);
|
|
|
|
async ValueTask<CreateMessageResult> InvokeHandlerAsync(CreateMessageRequestParams? request, IProgress<ProgressNotificationValue> progress, CancellationToken cancellationToken)
|
|
{
|
|
if (request is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(request));
|
|
}
|
|
|
|
skSamplingHandler ??= KernelFunctionFactory.CreateFromMethod(
|
|
(CreateMessageRequestParams? request, IProgress<ProgressNotificationValue> progress, CancellationToken ct) =>
|
|
{
|
|
return samplingRequestHandler(kernel!, request, progress, ct);
|
|
},
|
|
"MCPSamplingHandler"
|
|
);
|
|
|
|
// The argument names must match the parameter names of the delegate the SK Function is created from
|
|
KernelArguments kernelArguments = new()
|
|
{
|
|
["request"] = request,
|
|
["progress"] = progress
|
|
};
|
|
|
|
FunctionResult functionResult = await skSamplingHandler.InvokeAsync(kernel!, kernelArguments, cancellationToken);
|
|
|
|
return functionResult.GetValue<CreateMessageResult>()!;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates an instance of <see cref="Kernel"/> with the OpenAI chat completion service registered.
|
|
/// </summary>
|
|
/// <returns>An instance of <see cref="Kernel"/>.</returns>
|
|
protected static Kernel CreateKernelWithChatCompletionService()
|
|
{
|
|
// Load and validate configuration
|
|
IConfigurationRoot config = new ConfigurationBuilder()
|
|
.AddUserSecrets<Program>()
|
|
.AddEnvironmentVariables()
|
|
.Build();
|
|
|
|
if (config["OpenAI:ApiKey"] is not { } apiKey)
|
|
{
|
|
const string Message = "Please provide a valid OpenAI:ApiKey to run this sample. See the associated README.md for more details.";
|
|
Console.Error.WriteLine(Message);
|
|
throw new InvalidOperationException(Message);
|
|
}
|
|
|
|
string modelId = config["OpenAI:ChatModelId"] ?? "gpt-4o-mini";
|
|
|
|
// Create kernel
|
|
var kernelBuilder = Kernel.CreateBuilder();
|
|
kernelBuilder.Services.AddOpenAIChatCompletion(modelId: modelId, apiKey: apiKey);
|
|
|
|
return kernelBuilder.Build();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Displays the list of available MCP tools.
|
|
/// </summary>
|
|
/// <param name="tools">The list of the tools to display.</param>
|
|
protected static void DisplayTools(IList<McpClientTool> tools)
|
|
{
|
|
Console.WriteLine("Available MCP tools:");
|
|
foreach (var tool in tools)
|
|
{
|
|
Console.WriteLine($"- Name: {tool.Name}, Description: {tool.Description}");
|
|
}
|
|
Console.WriteLine();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the path to the MCPServer server executable.
|
|
/// </summary>
|
|
/// <returns>The path to the MCPServer server executable.</returns>
|
|
private static string GetMCPServerPath()
|
|
{
|
|
// Determine the configuration (Debug or Release)
|
|
string configuration;
|
|
|
|
#if DEBUG
|
|
configuration = "Debug";
|
|
#else
|
|
configuration = "Release";
|
|
#endif
|
|
|
|
return Path.Combine("..", "..", "..", "..", "MCPServer", "bin", configuration, "net8.0", "MCPServer.exe");
|
|
}
|
|
}
|