We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/3viky/mcp-domain-checker-price'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
update-pricing.sh•884 B
#!/usr/bin/env bash
#
# Update static pricing data from Joker.com DMAPI
# Requires Joker.com credentials configured in .env
#
set -e # Exit on error
echo "🔄 Updating static pricing data from Joker.com DMAPI..."
echo ""
# Check if .env exists
if [ ! -f .env ]; then
echo "❌ Error: .env file not found"
echo "Please create .env with Joker.com credentials:"
echo " cp .env.example .env"
echo " # Edit .env with your credentials"
exit 1
fi
# Check if dist exists
if [ ! -d dist ]; then
echo "📦 Building project first..."
pnpm build
fi
# Run the fetch-pricing script
echo "🔍 Fetching pricing from Joker.com..."
node dist/scripts/fetch-pricing.js
echo ""
echo "✅ Pricing data updated successfully!"
echo ""
echo "The updated pricing is now available at data/pricing.json"
echo "Restart the MCP server to load the new pricing data."
echo ""