Skip to content

Upgrading MCP Gateway and Managing Database Migrations

This guide provides step-by-step instructions for upgrading the MCP Gateway and handling associated database migrations to ensure a smooth transition with minimal downtime.


πŸ”„ Upgrade Overview

MCP Gateway is under active development, and while we strive for backward compatibility, it's essential to review version changes carefully when upgrading. Due to rapid iterations, documentation updates may sometimes lag. If you encounter issues, consult our GitHub repository or reach out via GitHub Issues.


πŸ›  Upgrade Steps

1. Backup Current Configuration and Data

Before initiating an upgrade:

  • Export Configuration: Backup your current configuration files.
  • Database Backup: Create a full backup of your database to prevent data loss.

2. Review Release Notes

Check the release notes for:

  • Breaking Changes: Identify any changes that might affect your current setup.
  • Migration Scripts: Look for any provided scripts or instructions for database migrations.

3. Update MCP Gateway

Depending on your deployment method: podman, docker, kubernetes, etc.

4. Apply Database Migrations

If the new version includes database schema changes:

  • Migration Scripts: Execute any provided migration scripts.
  • Manual Migrations: If no scripts are provided, consult the release notes for manual migration instructions.

5. Verify the Upgrade

Post-upgrade, ensure:

  • Service Availability: MCP Gateway is running and accessible.
  • Functionality: All features and integrations are working as expected.
  • Logs: Check logs for any errors or warnings.

πŸ§ͺ Testing and Validation

  • Staging Environment: Test the upgrade process in a staging environment before applying to production.
  • Automated Tests: Run your test suite to catch any regressions.
  • User Acceptance Testing (UAT): Engage end-users to validate critical workflows.

πŸ“š Additional Resources