File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ type BaseServerMetadata struct {
53
53
54
54
// ImageMetadata represents the metadata for an MCP server image stored in our registry.
55
55
type ImageMetadata struct {
56
- BaseServerMetadata
56
+ BaseServerMetadata `yaml:",inline"`
57
57
// Image is the Docker image reference for the MCP server
58
58
Image string `json:"image" yaml:"image"`
59
59
// TargetPort is the port for the container to expose (only applicable to SSE and Streamable HTTP transports)
@@ -149,7 +149,7 @@ type OAuthConfig struct {
149
149
// RemoteServerMetadata represents the metadata for a remote MCP server accessed via HTTP/HTTPS.
150
150
// Remote servers are accessed through the thv proxy command which handles authentication and tunneling.
151
151
type RemoteServerMetadata struct {
152
- BaseServerMetadata
152
+ BaseServerMetadata `yaml:",inline"`
153
153
// URL is the endpoint URL for the remote MCP server (e.g., https://api.example.com/mcp)
154
154
URL string `json:"url" yaml:"url"`
155
155
// Headers defines HTTP headers that can be passed to the remote server for authentication
You can’t perform that action at this time.
0 commit comments