Forge
csharp4405de34
1using System.Text.Json;
2using System.Text.Json.Serialization;
3
4namespace AgentClientProtocol;
5
6public record NewSessionRequest
7{
8 [JsonPropertyName("cwd")]
9 public required string Cwd { get; init; }
10
11 [JsonPropertyName("mcpServers")]
12 public required McpServer[] McpServers { get; init; }
13
14 [JsonPropertyName("_meta")]
15 public JsonElement? Meta { get; init; }
16}
17
View only · write via MCP/CIDE