Table of Contents

Class PromptsCapability

Namespace
ModelContextProtocol.Protocol.Types
Assembly
ModelContextProtocol.dll

Represents the prompts capability configuration. See the schema for details

public class PromptsCapability
Inheritance
PromptsCapability
Inherited Members

Properties

GetPromptHandler

Gets or sets the handler for get prompt requests.

[JsonIgnore]
public Func<RequestContext<GetPromptRequestParams>, CancellationToken, Task<GetPromptResult>>? GetPromptHandler { get; set; }

Property Value

Func<RequestContext<GetPromptRequestParams>, CancellationToken, Task<GetPromptResult>>

ListChanged

Whether this server supports notifications for changes to the prompt list.

[JsonPropertyName("listChanged")]
public bool? ListChanged { get; set; }

Property Value

bool?

ListPromptsHandler

Gets or sets the handler for list prompts requests.

[JsonIgnore]
public Func<RequestContext<ListPromptsRequestParams>, CancellationToken, Task<ListPromptsResult>>? ListPromptsHandler { get; set; }

Property Value

Func<RequestContext<ListPromptsRequestParams>, CancellationToken, Task<ListPromptsResult>>

PromptCollection

Gets or sets a collection of prompts served by the server.

[JsonIgnore]
public McpServerPrimitiveCollection<McpServerPrompt>? PromptCollection { get; set; }

Property Value

McpServerPrimitiveCollection<McpServerPrompt>

Remarks

Prompts will specified via PromptCollection augment the ListPromptsHandler and GetPromptHandler, if provided. ListPrompts requests will output information about every prompt in PromptCollection and then also any tools output by ListPromptsHandler, if it's non-null. GetPrompt requests will first check PromptCollection for the prompt being requested, and if the tool is not found in the PromptCollection, any specified GetPromptHandler will be invoked as a fallback.