Skip to main content
Glama

Axion Planetary MCP

by Dhenenjay
migrate-data.shβ€’717 B
#!/bin/bash # Data Migration Script - GCP to AWS set -e echo "πŸ“¦ Starting data migration from GCP to AWS..." GCS_BUCKET="gs://axion-planetary-gcp-bucket" S3_BUCKET="s3://axion-planetary-assets-production" # Install gsutil if not present if ! command -v gsutil &> /dev/null; then echo "❌ gsutil not found. Please install Google Cloud SDK." exit 1 fi # Sync data from GCS to local echo "⬇️ Downloading from GCS..." mkdir -p /tmp/migration-data gsutil -m rsync -r $GCS_BUCKET /tmp/migration-data/ # Upload to S3 echo "⬆️ Uploading to S3..." aws s3 sync /tmp/migration-data/ $S3_BUCKET/ --delete # Cleanup echo "🧹 Cleaning up..." rm -rf /tmp/migration-data echo "βœ… Migration complete!"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dhenenjay/axion-planetary-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server