30 lines
727 B
C#
30 lines
727 B
C#
namespace LinkToolAddin.host.mcp
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
public partial class StdioMcpServer : McpServer
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; }
|
|
|
|
[JsonProperty("isActive")]
|
|
public bool IsActive { get; set; }
|
|
|
|
[JsonProperty("registryUrl")]
|
|
public string RegistryUrl { get; set; }
|
|
|
|
[JsonProperty("command")]
|
|
public string Command { get; set; }
|
|
|
|
[JsonProperty("args")]
|
|
public List<string> Args { get; set; }
|
|
}
|
|
} |