Summary
Amazon Bedrock Runtime Converse limits toolConfig.tools[].toolSpec.name to 64 characters. Modern MCP clients qualify tool names with a server or application namespace, which can make otherwise valid tool names exceed this limit and cause Bedrock to reject the entire request before inference.
Please consider raising the Bedrock Runtime tool-name limit to at least 128 characters, or providing another service-supported mechanism for stable long-name aliases.
This is a Bedrock Runtime service API compatibility request rather than an SDK serialization bug. It is being filed here because the AWS SDK for Python currently targets Bedrock Runtime and provides a public AWS-owned feedback tracker.
Use case: Codex Apps over Bedrock
OpenAI Codex exposes app tools through MCP using model-visible names shaped like:
mcp__codex_apps__<tool_name>
The namespace consumes 17 characters, leaving only 47 characters for the individual tool name under the Bedrock limit.
Codex originally normalized MCP names to 64 bytes. OpenAI PR #39594 raised that limit to 128 bytes to match the OpenAI Responses API. Consequently, names between 65 and 128 characters are valid in Codex but fail when an OpenAI-compatible gateway forwards the request to Bedrock Runtime.
The Codex regression and reproduction details are tracked here:
openai/codex#46188
Original Codex name-length issue and changes:
Reproduction
- Invoke Bedrock Runtime
Converse with a model that supports tool use.
- Include a
toolSpec.name containing 65 valid ASCII characters.
- Bedrock rejects the request with a
ValidationException indicating that the member length must be less than or equal to 64.
The same failure occurs when one codex_apps MCP name exceeds the limit because Bedrock validates the complete tool configuration before model execution.
API constraint:
https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ToolSpecification.html
Expected behavior
Ideally, Bedrock Runtime would accept tool names of at least 128 characters consistently across:
ToolSpecification.name
SpecificToolChoice.name
- returned
toolUse.name values
- tool names replayed in conversation history
If the runtime limit cannot be raised, a documented service-supported aliasing or capability-negotiation mechanism would help clients avoid provider-specific request failures.
Current workaround
A proxy deterministically shortens names to 64 characters, preserves uniqueness with a hash suffix, and reverse-maps returned tool calls to their original MCP names. This works but requires every client or gateway to implement its own bidirectional mapping.
Related AWS-owned reports currently work around the same constraint by shortening names rather than changing the Runtime limit:
Environment
- Client: OpenAI Codex CLI 0.153.2 / Codex Apps MCP tools
- Backend: Amazon Bedrock Runtime through an OpenAI-compatible gateway
- Platform: macOS
- SDK applicability: service-side constraint; reproducible through any AWS SDK exposing
Converse
Summary
Amazon Bedrock Runtime
ConverselimitstoolConfig.tools[].toolSpec.nameto 64 characters. Modern MCP clients qualify tool names with a server or application namespace, which can make otherwise valid tool names exceed this limit and cause Bedrock to reject the entire request before inference.Please consider raising the Bedrock Runtime tool-name limit to at least 128 characters, or providing another service-supported mechanism for stable long-name aliases.
This is a Bedrock Runtime service API compatibility request rather than an SDK serialization bug. It is being filed here because the AWS SDK for Python currently targets Bedrock Runtime and provides a public AWS-owned feedback tracker.
Use case: Codex Apps over Bedrock
OpenAI Codex exposes app tools through MCP using model-visible names shaped like:
mcp__codex_apps__<tool_name>The namespace consumes 17 characters, leaving only 47 characters for the individual tool name under the Bedrock limit.
Codex originally normalized MCP names to 64 bytes. OpenAI PR #39594 raised that limit to 128 bytes to match the OpenAI Responses API. Consequently, names between 65 and 128 characters are valid in Codex but fail when an OpenAI-compatible gateway forwards the request to Bedrock Runtime.
The Codex regression and reproduction details are tracked here:
openai/codex#46188
Original Codex name-length issue and changes:
Reproduction
Conversewith a model that supports tool use.toolSpec.namecontaining 65 valid ASCII characters.ValidationExceptionindicating that the member length must be less than or equal to 64.The same failure occurs when one
codex_appsMCP name exceeds the limit because Bedrock validates the complete tool configuration before model execution.API constraint:
https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ToolSpecification.html
Expected behavior
Ideally, Bedrock Runtime would accept tool names of at least 128 characters consistently across:
ToolSpecification.nameSpecificToolChoice.nametoolUse.namevaluesIf the runtime limit cannot be raised, a documented service-supported aliasing or capability-negotiation mechanism would help clients avoid provider-specific request failures.
Current workaround
A proxy deterministically shortens names to 64 characters, preserves uniqueness with a hash suffix, and reverse-maps returned tool calls to their original MCP names. This works but requires every client or gateway to implement its own bidirectional mapping.
Related AWS-owned reports currently work around the same constraint by shortening names rather than changing the Runtime limit:
Environment
Converse