We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yaniv-golan/mcp-bash-framework'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
readme_render.bats•437 B
#!/usr/bin/env bats
# Unit: README.md render drift detection.
load '../../node_modules/bats-support/load'
load '../../node_modules/bats-assert/load'
@test "README.md is up to date with template" {
run bash "${BATS_TEST_DIRNAME}/../../scripts/render-readme.sh" --check
if [ "${status}" -ne 0 ]; then
echo "README render drift detected. Run:"
echo " bash ${BATS_TEST_DIRNAME}/../../scripts/render-readme.sh"
fi
assert_success
}