feat: Missing Glue Connections API coverage in aws-dataprocessing-mcp-server#2925
Open
ZhitongYan wants to merge 1 commit intoawslabs:mainfrom
Open
feat: Missing Glue Connections API coverage in aws-dataprocessing-mcp-server#2925ZhitongYan wants to merge 1 commit intoawslabs:mainfrom
ZhitongYan wants to merge 1 commit intoawslabs:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes: Missing Glue Connections API coverage in aws-dataprocessing-mcp-server
Summary
Changes
Adds full coverage for the three AWS Glue Connections API categories documented at Connection API:
Connection API — added 2 missing operations to the existing
manage_aws_glue_connectionstool:TestConnection(test-connection) — test a connection to validate service credentialsBatchDeleteConnection(batch-delete-connection) — delete multiple connections in a single callConnection Types API — new
manage_aws_glue_connection_typestool:DescribeConnectionType(describe-connection-type) — get full details of a connection type including properties, auth config, and compute environmentsListConnectionTypes(list-connection-types) — discover all available connection types in AWS GlueConnection Metadata and Preview API — new
manage_aws_glue_connection_metadatatool:ListEntities(list-entities) — list available entities (tables, SObjects, etc.) for a connectionDescribeEntity(describe-entity) — get schema/field details for a specific entityGetEntityRecords(get-entity-records) — preview data records from an entityFiles changed:
models/data_catalog_models.py— 10 new Pydantic models for the new operationscore/glue_data_catalog/data_catalog_handler.py— 7 new methods onDataCatalogManagerhandlers/glue/data_catalog_handler.py— extended connections tool, added 2 new tools, registered in__init__server.py— updatedSERVER_INSTRUCTIONSwith new workflow documentationtests/core/glue_data_catalog/test_data_catalog_handler.py— 16 new core manager teststests/handlers/glue/test_data_catalog_handler.py— 22 new handler tests (including new fixture for sensitive data access)User experience
Before: Users could only create, get, list, update, and delete connections. No way to test connections, batch delete, discover connection types, or explore entity metadata/preview data through the MCP server.
After: Users have full Glue Connections API coverage. They can test connections before use, batch delete connections, discover available connection types (e.g., JDBC, Kafka, Salesforce), explore entities exposed by a connection, inspect entity schemas, and preview entity data — all through MCP tools.
Checklist
Is this a breaking change? N
RFC issue number: N/A
Checklist:
Acknowledgment
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the project license.