2025-04-28 15:21:47 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type McpServer struct {
|
|
|
|
|
BaseModel
|
2025-07-30 18:54:51 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
|
DockerCompose string `json:"dockerCompose"`
|
|
|
|
|
Command string `json:"command"`
|
|
|
|
|
ContainerName string `json:"containerName"`
|
|
|
|
|
Message string `json:"message"`
|
|
|
|
|
Port int `json:"port"`
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
|
Env string `json:"env"`
|
|
|
|
|
BaseURL string `json:"baseUrl"`
|
|
|
|
|
SsePath string `json:"ssePath"`
|
|
|
|
|
WebsiteID int `json:"websiteID"`
|
|
|
|
|
Dir string `json:"dir"`
|
|
|
|
|
HostIP string `json:"hostIP"`
|
|
|
|
|
StreamableHttpPath string `json:"streamableHttpPath"`
|
|
|
|
|
OutputTransport string `json:"outputTransport"`
|
2025-09-04 15:21:33 +08:00
|
|
|
Type string `json:"type"`
|
2025-04-28 15:21:47 +08:00
|
|
|
}
|