Skip to main content
Glama
mesh.go613 B
package kiali import ( "context" "net/http" "net/url" ) // MeshStatus calls the Kiali mesh graph API to get the status of mesh components. // This returns information about mesh components like Istio, Kiali, Grafana, Prometheus // and their interactions, versions, and health status. func (k *Kiali) MeshStatus(ctx context.Context) (string, error) { u, err := url.Parse(MeshGraphEndpoint) if err != nil { return "", err } q := u.Query() q.Set("includeGateways", "false") q.Set("includeWaypoints", "false") u.RawQuery = q.Encode() return k.executeRequest(ctx, http.MethodGet, u.String(), "", nil) }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/containers/kubernetes-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server