We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Believe-SA/datadog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
testutil.go•242 B
// internal/testutil/testutil.go
package testutil
// StringPtr creates a pointer to a string value
func StringPtr(s string) *string {
return &s
}
// Int64Ptr creates a pointer to an int64 value
func Int64Ptr(i int64) *int64 {
return &i
}