Amazon Bedrock AgentCore Stateful MCP Support Turns Agent Sessions into Production-Grade Workflow Units: The 2026 Rollout Playbook

The strongest AI engineering signal this week is not a new model. It is a runtime behavior shift.

On March 10, 2026, AWS announced that Amazon Bedrock AgentCore Runtime now supports stateful MCP server features. This adds stateful session support for capabilities like elicitation, sampling, and progress notifications, while preserving session isolation and MCP protocol alignment.

For teams building agent products, this is the difference between “single-shot tool calls” and genuinely interactive workflows that survive multi-step execution.

Why this matters now

  1. Stateful interactions are now first-class in MCP on AgentCore
    Features like elicitation and sampling can now be used in session-aware tool flows instead of forcing everything into stateless, one-turn patterns.

  2. Session context can be preserved across multi-step execution
    In stateful mode, servers return an Mcp-Session-Id header and clients send it on subsequent requests, enabling continuity for long-running agent tasks.

  3. Complex workflows can become more user-trustworthy
    Progress notifications let users see what the agent is doing during lengthy operations, reducing black-box behavior and abandonment.

Practical rollout playbook

1. Split your agent tools into stateless and stateful lanes

Do not flip everything to stateful mode at once.

This avoids unnecessary complexity while targeting the highest-value workflows first.

2. Standardize Mcp-Session-Id handling in every client path

Treat session ID management as infrastructure, not app logic.

Without this, stateful behavior will look flaky in production.

3. Design elicitation prompts as structured checkpoints

Elicitation should gather only decision-critical inputs.

This reduces failure loops and improves completion rates.

4. Use progress notifications for operations over 3-5 seconds

Progress updates should be explicit and stage-based.

Agents that report progress are easier to debug and easier for users to trust.

5. Add release gates before production cutover

Require clear readiness criteria per stateful workflow.

No release gate, no rollout.

Concrete implementation example

A travel-ops assistant handling itinerary changes can move from stateless to stateful MCP in a two-week rollout:

Success criteria:

Strategic takeaway

The important trend is not “MCP support exists.”

The trend is that stateful agent runtime behavior is becoming a platform primitive. Teams that treat sessions, elicitation, and progress as product architecture, not optional extras, will ship more reliable agent experiences at enterprise scale.

Sources