We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gemyago/atlacp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.envrc•494 B
go_version=$(grep "^go " go.mod | awk '{print $2}')
gobrew use ${go_version}@latest
# We store common go related files (caches, common tools e.t.c) in the parent directory
# This may be unexpected but it's a better option than polutting global
export GOPATH=$(expand_path $PWD/../go/${go_version})
PATH_add $GOPATH/bin
PATH_add ./bin
# python/venv is optional dependency, see README.md#build-dependencies
if [ -d ".venv" ] && [ -f ".venv/bin/activate" ]; then
source .venv/bin/activate
fi