Class ServerCapabilities
- Namespace
- ModelContextProtocol.Protocol.Types
- Assembly
- ModelContextProtocol.dll
Represents the capabilities that a server may support. See the schema for details
public class ServerCapabilities
- Inheritance
-
ServerCapabilities
- Inherited Members
Properties
Experimental
Experimental, non-standard capabilities that the server supports.
[JsonPropertyName("experimental")]
public Dictionary<string, object>? Experimental { get; set; }
Property Value
Logging
Present if the server supports sending log messages to the client.
[JsonPropertyName("logging")]
public LoggingCapability? Logging { get; set; }
Property Value
Prompts
Present if the server offers any prompt templates.
[JsonPropertyName("prompts")]
public PromptsCapability? Prompts { get; set; }
Property Value
Resources
Present if the server offers any resources to read.
[JsonPropertyName("resources")]
public ResourcesCapability? Resources { get; set; }
Property Value
Tools
Present if the server offers any tools to call.
[JsonPropertyName("tools")]
public ToolsCapability? Tools { get; set; }