We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nirholas/universal-crypto-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
local-release.shβ’1.07 KiB
#!/bin/bash
# Local release script - runs the same steps as GitHub Actions
# Use this when GitHub Actions is disabled
set -e
echo "π Checking for OPENAI_API_KEY..."
if [ -z "$OPENAI_API_KEY" ]; then
if [ -f .env ]; then
export $(grep OPENAI_API_KEY .env | xargs)
fi
fi
if [ -z "$OPENAI_API_KEY" ]; then
echo "β OPENAI_API_KEY not set. Please set it or add to .env file"
exit 1
fi
echo "π¦ Installing dependencies..."
bun install
echo "π§ͺ Running tests..."
bun run test || echo "β οΈ Tests skipped or failed"
echo "π Formatting and translating agents..."
bun run format
echo "π Updating README..."
bun run awesome || echo "β οΈ Awesome skipped"
echo "ποΈ Building public index..."
bun run build
echo "β Local release complete!"
echo ""
echo "π Summary:"
echo " - Agents: $(ls src/*.json | wc -l)"
echo " - Locales: $(ls -d locales/*/ | wc -l) agents Γ 18 languages"
echo " - Public files: $(ls public/*.json | wc -l)"
echo ""
echo "π Ready to commit and push!"
echo " git add ."
echo " git commit -m 'chore: Release'"
echo " git push"