We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
load("@prelude//os_lookup:defs.bzl", "os_lookup")
load("@prelude//utils:source_listing.bzl", "source_listing")
oncall("build_infra")
source_listing()
os_lookup(
name = "os_lookup",
cpu = select({
"DEFAULT": None,
"config//cpu:arm64": "arm64",
"config//cpu:x86_64": "x86_64",
}),
os = select({
# FIXME(JakobDegen): No default
"DEFAULT": "linux",
"config//os:linux": "linux",
"config//os:macos": "macos",
"config//os:windows": "windows",
# FIXME(JakobDegen): We assuem fat means fat mac linux, but that might not be true in the
# future.
"prelude//platforms:fat_platform_enabled": "fat_mac_linux",
}),
script = select({
"DEFAULT": "sh",
"config//os:windows": "bat",
}),
visibility = ["PUBLIC"],
)