Skip to main content
Glama

CentralMind/Gateway

claims.go391 B
package xcontext import "context" type claimsKeyType string const claimsKey claimsKeyType = "claims" func WithClaims(ctx context.Context, info map[string]any) context.Context { return context.WithValue(ctx, claimsKey, info) } func Claims(ctx context.Context) map[string]any { claims, ok := ctx.Value(claimsKey).(map[string]any) if !ok { return map[string]any{} } return claims }

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/centralmind/gateway'

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