Module Values.RegisteredMCPServerDetailsSource

Details specific to a registered MCP (Model Context Protocol) server.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The MCP server name.

    *)
  2. endpoint : String_.t option;
    (*

    The MCP server endpoint URL.

    *)
  3. authorizationMethod : MCPServerAuthorizationMethod.t option;
    (*

    The MCP server uses this authorization method.

    *)
  4. description : Description.t option;
    (*

    Optional description for the MCP server.

    *)
  5. apiKeyHeader : String_.t option;
    (*

    If the MCP server uses API key authentication, these details are provided.

    *)
}
Sourceval make : ?name:??? -> ?endpoint:??? -> ?authorizationMethod:??? -> ?description:??? -> ?apiKeyHeader:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t