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 = "pkg",
srcs = [
"constants.go",
"init.go",
"interface.go",
],
importpath = "github.com/eat-pray-ai/yutu/pkg",
visibility = ["//visibility:public"],
deps = ["@com_github_jedib0t_go_pretty_v6//table"],
)
go_test(
name = "pkg_test",
srcs = ["init_test.go"],
embed = [":pkg"],
)