docs(aws-api-mcp-server): mark aws___call_aws as removed in MIGRATION.md (#4581) - #4584
Open
warren830 wants to merge 1 commit into
Open
docs(aws-api-mcp-server): mark aws___call_aws as removed in MIGRATION.md (#4581)#4584warren830 wants to merge 1 commit into
warren830 wants to merge 1 commit into
Conversation
….md (awslabs#4581) AWS removed aws___call_aws from the managed AWS MCP Server on 2026-08-31, but the migration guide still listed it as a live tool and told readers every action is reachable through it. Clients built from the guide broke with a hard-to-diagnose 'The call_aws tool has been removed' error. Remove it from the live tool table (replaced by a removal note), point API coverage at aws___run_script only, and add a call_aws->run_script porting example noting call_boto3 takes the PascalCase operation name and that a single-call run_script takes ~13-15s (so 10s client timeouts fail).
warren830
requested review from
a team,
PCManticore,
arnewouters,
bidesh,
iddv and
rshevchuk-git
as code owners
September 4, 2026 11:46
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.
Issue
Fixes #4581.
Problem
src/aws-api-mcp-server/MIGRATION.mdstill listsaws___call_awsas a live tool on the AWS MCP Server and says every action is "reachable throughaws___call_awsandaws___run_script". AWS removedaws___call_awsfrom the managed server on 2026-08-31 (tools/callnow returnsThe call_aws tool has been removed, use another one.). Clients built from this guide break with a hard-to-diagnose error while the guide tells readers the tool is fine.Changes
aws___call_awsfrom the live tool table and added a dated removal note (deprecated 2026-07-15, removed 2026-08-31) pointing toaws___run_script.aws___run_scriptonly.call_aws→run_scriptporting example, with the two notes that trip up most ports:call_boto3takes the PascalCase operation name (GetSecretValue), not the CLI'sget-secret-value;run_scripttakes ~13–15s, so clients ported with a 10s timeout fail on every call.Docs-only change; no code paths touched.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of the project license.