Module Values.RegisteredGrafanaServerDetailsSource

Details specific to a registered Grafana server, used by the built-in MCP server.

Sourcetype nonrec t = {
  1. endpoint : RegisteredGrafanaServerDetailsEndpointString.t option;
    (*

    Grafana instance URL (e.g., https://your-instance.grafana.net)

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

    The authz method used by the MCP server.

    *)
}
Sourceval make : ?endpoint:??? -> ?authorizationMethod:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RegisteredGrafanaServerDetailsEndpointString.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