Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/ModelContextProtocol.Core/Protocol/Icon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,9 @@ public sealed class Icon
/// Gets or sets the optional theme for this icon.
/// </summary>
/// <remarks>
/// Can be "light", "dark", or a custom theme identifier.
/// The value is used to specify which UI theme the icon is designed for.
/// <see cref="Theme"/> may be "light" or "dark". "light" indicates the icon is designed to be used with a light
/// background, and "dark" indicates the icon is designed to be used with a dark background.
/// If not provided, clients should assume the icon can be used with any theme.
/// </remarks>
[JsonPropertyName("theme")]
public string? Theme { get; set; }
Expand Down