Table of Contents

Class PromptArgument

Namespace
ModelContextProtocol.Protocol.Types
Assembly
ModelContextProtocol.dll

Describes an argument that a prompt can accept. See the schema for details

public class PromptArgument
Inheritance
PromptArgument
Inherited Members

Properties

Description

A human-readable description of the argument.

[JsonPropertyName("description")]
public string? Description { get; set; }

Property Value

string

Name

The name of the argument.

[JsonPropertyName("name")]
public string Name { get; set; }

Property Value

string

Required

Whether this argument must be provided.

[JsonPropertyName("required")]
public bool? Required { get; set; }

Property Value

bool?