-
Notifications
You must be signed in to change notification settings - Fork 673
Expand file tree
/
Copy pathRequestHandlers.cs
More file actions
48 lines (45 loc) · 2.4 KB
/
RequestHandlers.cs
File metadata and controls
48 lines (45 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using ModelContextProtocol.Protocol;
using System.Text.Json;
using System.Text.Json.Nodes;
using System.Text.Json.Serialization.Metadata;
namespace ModelContextProtocol;
internal sealed class RequestHandlers : Dictionary<string, Func<JsonRpcRequest, CancellationToken, Task<JsonNode?>>>
{
/// <summary>
/// Registers a handler for incoming requests of a specific method in the MCP protocol.
/// </summary>
/// <typeparam name="TParams">Type of request payload that will be deserialized from incoming JSON</typeparam>
/// <typeparam name="TResult">Type of response payload that will be serialized to JSON (not full RPC response)</typeparam>
/// <param name="method">Method identifier to register for (e.g., "tools/list", "logging/setLevel")</param>
/// <param name="handler">Handler function to be called when a request with the specified method identifier is received</param>
/// <param name="requestTypeInfo">The JSON contract governing request parameter deserialization</param>
/// <param name="responseTypeInfo">The JSON contract governing response serialization</param>
/// <remarks>
/// <para>
/// This method is used internally by the MCP infrastructure to register handlers for various protocol methods.
/// When an incoming request matches the specified method, the registered handler will be invoked with the
/// deserialized request parameters.
/// </para>
/// <para>
/// The handler function receives the deserialized request object, the full JSON-RPC request, and a cancellation token,
/// and should return a response object that will be serialized back to the client.
/// </para>
/// </remarks>
public void Set<TParams, TResult>(
string method,
Func<TParams, JsonRpcRequest, CancellationToken, ValueTask<TResult>> handler,
JsonTypeInfo<TParams> requestTypeInfo,
JsonTypeInfo<TResult> responseTypeInfo)
{
Throw.IfNull(method);
Throw.IfNull(handler);
Throw.IfNull(requestTypeInfo);
Throw.IfNull(responseTypeInfo);
this[method] = async (request, cancellationToken) =>
{
TParams typedRequest = JsonSerializer.Deserialize(request.Params, requestTypeInfo)!;
object? result = await handler(typedRequest, request, cancellationToken).ConfigureAwait(false);
return JsonSerializer.SerializeToNode(result, responseTypeInfo);
};
}
}