Skip to content

Commit 6fa1443

Browse files
Adding a base class for request params that exposes the progressToken (#99)
* Adding a base class for request params that exposes the progressToken This aligns more with the type structure see in the other SDK's (eg: https://github.com/modelcontextprotocol/python-sdk/blob/main/src/mcp/types.py#L41) while also ensuring they are exposing the JSONRPCRequest (https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json#L771-L806) data. Storing progressToken as an object as it could be an int or string (per https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json#L1268-L1274). Fixes #67 * Using usings * Apply suggestions from code review --------- Co-authored-by: Stephen Toub <[email protected]>
1 parent a9175f0 commit 6fa1443

11 files changed

+40
-9
lines changed

src/ModelContextProtocol/Protocol/Types/CallToolRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Used by the client to invoke a tool provided by the server.
55
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
66
/// </summary>
7-
public class CallToolRequestParams
7+
public class CallToolRequestParams : RequestParams
88
{
99
/// <summary>
1010
/// Tool name.

src/ModelContextProtocol/Protocol/Types/CompleteRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// A request from the client to the server, to ask for completion options.
55
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
66
/// </summary>
7-
public class CompleteRequestParams
7+
public class CompleteRequestParams : RequestParams
88
{
99
/// <summary>
1010
/// The reference's information

src/ModelContextProtocol/Protocol/Types/CreateMessageRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/// clients have full discretion over model selection and should inform users before sampling.
1010
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
1111
/// </summary>
12-
public class CreateMessageRequestParams
12+
public class CreateMessageRequestParams : RequestParams
1313
{
1414
/// <summary>
1515
/// A request to include context from one or more MCP servers (including the caller), to be attached to the prompt. The client MAY ignore this request.

src/ModelContextProtocol/Protocol/Types/GetPromptRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Used by the client to get a prompt provided by the server.
55
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
66
/// </summary>
7-
public class GetPromptRequestParams
7+
public class GetPromptRequestParams : RequestParams
88
{
99
/// <summary>
1010
/// he name of the prompt or prompt template.

src/ModelContextProtocol/Protocol/Types/InitializeRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace ModelContextProtocol.Protocol.Types;
66
/// Parameters for an initialization request sent to the server.
77
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
88
/// </summary>
9-
public record InitializeRequestParams
9+
public class InitializeRequestParams : RequestParams
1010
{
1111
/// <summary>
1212
/// The version of the Model Context Protocol that the client wants to use.

src/ModelContextProtocol/Protocol/Types/ReadResourceRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Sent from the client to the server, to read a specific resource URI.
55
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
66
/// </summary>
7-
public class ReadResourceRequestParams
7+
public class ReadResourceRequestParams : RequestParams
88
{
99
/// <summary>
1010
/// The URI of the resource to read. The URI can use any protocol; it is up to the server how to interpret it.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System.Text.Json.Serialization;
2+
3+
namespace ModelContextProtocol.Protocol.Types;
4+
5+
/// <summary>
6+
/// Base class for all request parameters.
7+
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json#L771-L806">See the schema for details</see>
8+
/// </summary>
9+
public abstract class RequestParams
10+
{
11+
/// <summary>
12+
/// Metadata related to the tool invocation.
13+
/// </summary>
14+
[JsonPropertyName("_meta")]
15+
public RequestParamsMetadata? Meta { get; init; }
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System.Text.Json.Serialization;
2+
3+
namespace ModelContextProtocol.Protocol.Types;
4+
5+
/// <summary>
6+
/// Metadata related to the request.
7+
/// </summary>
8+
public class RequestParamsMetadata
9+
{
10+
/// <summary>
11+
/// If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
12+
/// </summary>
13+
[JsonPropertyName("progressToken")]
14+
public object ProgressToken { get; set; } = default!;
15+
}

src/ModelContextProtocol/Protocol/Types/SetLevelRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace ModelContextProtocol.Protocol.Types;
66
/// A request from the client to the server, to enable or adjust logging.
77
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
88
/// </summary>
9-
public class SetLevelRequestParams
9+
public class SetLevelRequestParams : RequestParams
1010
{
1111
/// <summary>
1212
/// The level of logging that the client wants to receive from the server.

src/ModelContextProtocol/Protocol/Types/SubscribeRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Sent from the client to request updated notifications from the server whenever a particular primitive changes.
55
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
66
/// </summary>
7-
public class SubscribeRequestParams
7+
public class SubscribeRequestParams : RequestParams
88
{
99
/// <summary>
1010
/// The URI of the resource to subscribe to. The URI can use any protocol; it is up to the server how to interpret it.

src/ModelContextProtocol/Protocol/Types/UnsubscribeRequestParams.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Sent from the client to request not receiving updated notifications from the server whenever a primitive resource changes.
55
/// <see href="https://github.com/modelcontextprotocol/specification/blob/main/schema/2024-11-05/schema.json">See the schema for details</see>
66
/// </summary>
7-
public class UnsubscribeRequestParams
7+
public class UnsubscribeRequestParams : RequestParams
88
{
99
/// <summary>
1010
/// The URI of the resource to unsubscribe fro. The URI can use any protocol; it is up to the server how to interpret it.

0 commit comments

Comments
 (0)