MCPServerManifestEntry type

type MCPServerManifestEntry = {
  audience?: string
  headers?: Record<string, string>
  publisher?: string
  scope?: string
  url?: string
} & (
  | { mcpServerName: string; mcpServerUniqueName?: string }
  | { mcpServerName?: string; mcpServerUniqueName: string }
)