We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eat-pray-ai/yutu'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
load("@rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "auth",
srcs = [
"auth.go",
"service.go",
],
importpath = "github.com/eat-pray-ai/yutu/pkg/auth",
visibility = ["//visibility:public"],
deps = [
"//pkg",
"//pkg/utils",
"@org_golang_google_api//option",
"@org_golang_google_api//youtube/v3:youtube",
"@org_golang_x_oauth2//:oauth2",
"@org_golang_x_oauth2//google",
],
)
go_test(
name = "auth_test",
srcs = ["service_test.go"],
embed = [":auth"],
)