Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add MySQL Database Support
Motivation and Context
Added complete MySQL database support to the MCP Registry, providing an alternative to MongoDB for storing and managing registry data. This implementation follows the same interface as the existing database implementations.
How Has This Been Tested?
List
for retrieving servers with paginationGetByID
for fetching individual server detailsPublish
for adding new server entriesImportSeed
for bulk data importtest_endpoints.sh
: Tests all API endpoints including:test_publish.sh
: Tests server publishing with:Breaking Changes
No breaking changes. The MySQL implementation follows the same interface as existing database implementations.
Types of changes
Checklist
Additional context
Key components added:
mysql.go
: Core MySQL implementation with all database operationsmysql_test.go
: Comprehensive test suitemysql_schema.sql
: Database schema definitiondocker-compose.mysql.yml
: Docker Compose configuration with:mysql_schema.sql
The implementation provides: