We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bekirdag/docdex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
release_artifact_scripts.rs•375 B
use std::fs;
#[test]
fn release_artifact_scripts_exist() {
for path in [
"scripts/test_release_artifacts.sh",
"scripts/test_npm_install_matrix.sh",
] {
let contents = fs::read_to_string(path)
.unwrap_or_else(|_| panic!("{path} must exist for release validation"));
assert!(contents.contains("set -euo pipefail"));
}
}