#!/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