Table of Contents

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

Dictionary<string, object>

Logging

Present if the server supports sending log messages to the client.

[JsonPropertyName("logging")]
public LoggingCapability? Logging { get; set; }

Property Value

LoggingCapability

Prompts

Present if the server offers any prompt templates.

[JsonPropertyName("prompts")]
public PromptsCapability? Prompts { get; set; }

Property Value

PromptsCapability

Resources

Present if the server offers any resources to read.

[JsonPropertyName("resources")]
public ResourcesCapability? Resources { get; set; }

Property Value

ResourcesCapability

Tools

Present if the server offers any tools to call.

[JsonPropertyName("tools")]
public ToolsCapability? Tools { get; set; }

Property Value

ToolsCapability