AWS Security ChangesHomeSearch

AWS bedrock-agentcore documentation change

Service: bedrock-agentcore · 2026-06-19 · Documentation low

File: bedrock-agentcore/latest/devguide/gateway-core-concepts.md

Summary

Expanded Gateway capabilities to include inference targets, added security emphasis, and introduced new target types including connectors and integrations.

Security assessment

The change explicitly adds 'secure' to describe the Gateway's entry point ('secure entry point', 'single, secure access point'), indicating enhanced security documentation. However, there's no evidence of addressing a specific vulnerability or incident. The added security descriptors are preventative measures rather than vulnerability fixes.

Diff

diff --git a/bedrock-agentcore/latest/devguide/gateway-core-concepts.md b/bedrock-agentcore/latest/devguide/gateway-core-concepts.md
index 24776ac9c..4ea75df3b 100644
--- a//bedrock-agentcore/latest/devguide/gateway-core-concepts.md
+++ b//bedrock-agentcore/latest/devguide/gateway-core-concepts.md
@@ -11 +11 @@ Key conceptsTarget typesMCP tool types
-Amazon Bedrock AgentCore Gateway provides a standardized way for AI agents to discover and interact with tools and services. Understanding the core concepts of Gateway will help you design and implement effective tool integration strategies for your AI agents.
+Amazon Bedrock AgentCore Gateway provides a standardized, secure entry point for agentic traffic, letting AI agents discover and interact with tools, other agents, and large language models (LLMs). Understanding the core concepts of Gateway will help you design and implement effective integration strategies for your AI agents.
@@ -18 +18 @@ Amazon Bedrock AgentCore Gateway provides a standardized way for AI agents to di
-An AgentCore Gateway provides a single access point for an agent to interact with tools and services. A gateway can operate in two modes. In aggregation mode, the gateway acts as an MCP server, combining the capabilities of all its MCP targets into a unified virtual MCP server. For HTTP targets, the gateway sends traffic directly to the target without aggregation or protocol translation. A gateway can have multiple targets, each representing a different tool or set of tools.
+An AgentCore Gateway provides a single, secure access point for an agent to reach tools, other agents, and models. A gateway can have multiple targets across three categories—MCP, HTTP, and inference. For MCP targets, the gateway operates in aggregation mode, acting as an MCP server that combines the capabilities of all its MCP targets into a unified virtual MCP server. For HTTP targets, the gateway sends traffic directly to the target (for example, another agent or an A2A service) without aggregation or protocol translation. For inference targets, the gateway routes LLM requests to one or more model providers through a unified, model-based routing endpoint.
@@ -23 +23 @@ An AgentCore Gateway provides a single access point for an agent to interact wit
-A target defines the backend service that a gateway connects to. There are two categories of targets. MCP targets define APIs, Lambda functions, MCP servers, or tool definitions that the gateway aggregates into a unified MCP server. HTTP targets define HTTP-based services, such as AgentCore Runtime agents, that the gateway proxies requests to directly.
+A target defines the backend that a gateway connects to. There are three categories of targets. MCP targets define APIs, Lambda functions, MCP servers, or tool definitions that the gateway aggregates into a unified MCP server. HTTP targets define HTTP-based services, such as AgentCore Runtime agents and other agents, that the gateway proxies requests to directly. Inference targets route LLM traffic to one or more model providers through a unified endpoint, selecting the destination based on the requested model.
@@ -37 +37 @@ When Gateway makes calls to your APIs or Lambda function it must use some creden
-Gateway supports two categories of targets:
+Gateway supports three categories of targets:
@@ -42 +42 @@ Gateway supports two categories of targets:
-MCP targets operate in aggregation mode. The gateway combines the capabilities of all MCP targets into a single unified virtual MCP server. Clients see one consolidated `tools/list` response that includes tools from all attached MCP targets. MCP targets support capability synchronization, semantic tool search, and three-legged OAuth (3LO) at the target level. MCP target types include Lambda functions, API Gateway REST APIs, OpenAPI specifications, Smithy models, MCP servers, and built-in integration provider templates.
+MCP targets operate in aggregation mode. The gateway combines the capabilities of all MCP targets into a single unified virtual MCP server. Clients see one consolidated `tools/list` response that includes tools from all attached MCP targets. MCP targets support capability synchronization, semantic tool search, and three-legged OAuth (3LO) at the target level. MCP target types include Lambda functions, API Gateway REST APIs, OpenAPI specifications, Smithy models, MCP servers, built-in integration provider templates and built-in connectors to tools.
@@ -47 +47,6 @@ MCP targets operate in aggregation mode. The gateway combines the capabilities o
-HTTP targets send traffic directly to the target without aggregation or protocol translation. HTTP targets do not support capability synchronization or semantic tool search. Clients address each target individually through path-based routing. HTTP target types include Amazon Bedrock AgentCore Runtime agents.
+HTTP targets send traffic directly to the target without aggregation or protocol translation. HTTP targets do not support capability synchronization or semantic tool search. Clients address each target individually through path-based routing. HTTP target types include Amazon Bedrock AgentCore Runtime agents, other agents (including Agent-to-Agent (A2A) services), external MCP servers, and any HTTP endpoint reached through a passthrough target.
+
+**Inference target**
+    
+
+Inference targets route large language model (LLM) traffic to one or more model providers through a unified endpoint. The gateway selects the destination provider based on the `model` field in the request, giving agents a single, consistent interface across providers such as Amazon Bedrock, OpenAI, and Anthropic.
@@ -72,0 +78,10 @@ Use remote MCP servers to connect tools, prompts, and resources to your agent ru
+**Integrations**
+    
+
+Use pre-configured templates from integration providers.
+
+**Connectors**
+    
+
+Use built-in connectors to tools.
+