Table of Contents

Class Completion

Namespace
ModelContextProtocol.Protocol.Types
Assembly
ModelContextProtocol.dll

Represents a completion object in the server's response See the schema for details

public class Completion
Inheritance
Completion
Inherited Members

Properties

HasMore

Indicates whether there are additional completion options beyond those provided in the current response, even if the exact total is unknown.

[JsonPropertyName("hasMore")]
public bool? HasMore { get; set; }

Property Value

bool?

Total

The total number of completion options available. This can exceed the number of values actually sent in the response.

[JsonPropertyName("total")]
public int? Total { get; set; }

Property Value

int?

Values

An array of completion values. Must not exceed 100 items.

[JsonPropertyName("values")]
public string[] Values { get; set; }

Property Value

string[]