Building agentic AI on AWS with Amazon Bedrock AgentCore
TECH

Building agentic AI on AWS with Amazon Bedrock AgentCore

21+
Signals

Strategic Overview

  • 01.
    Amazon Bedrock AgentCore reached general availability on October 13, 2025, giving developers managed Runtime, Memory, Identity, Gateway, and Observability services to run AI agents built in any framework without operating the underlying infrastructure.
  • 02.
    AWS published a reference architecture that pairs Stardog's knowledge-graph semantic layer over Amazon Aurora and Amazon Redshift with a Strands Agents agent on AgentCore, letting the agent answer customer-360 questions across both databases without any extract-transform-load pipeline.
  • 03.
    KTern.AI built a configuration-driven agentic platform on AgentCore that deploys more than twenty specialized agents to automate SAP transformation, and AWS's published case study reports the approach cut overall project timelines by 45 percent and discovery-and-assessment time by 60 to 70 percent.
  • 04.
    AgentCore Runtime isolates each agent session in its own microVM and offers an eight-hour execution window, and it supports open-source frameworks including Strands Agents, LangGraph, CrewAI, LlamaIndex, Google ADK, and the OpenAI Agents SDK.

AWS's Real Bet: The Model Was Never the Hard Part

For most of the past year the industry's running joke has been that standing up an AI agent takes about thirty seconds and getting one into production takes about thirty weeks. Amazon Bedrock AgentCore is AWS's answer to that gap. When it reached general availability in October 2025, AWS positioned it not as another model or agent framework but as the managed plumbing underneath agents built in any framework [1]. The service is deliberately modular: Runtime hosts the agent, Gateway turns existing APIs and Lambda functions into agent-callable tools, Memory persists both session and long-term context, Identity handles user-to-agent and agent-to-tool authentication, and Observability makes each run auditable.

The technical detail that matters most is Runtime. Each agent session gets its own isolated microVM - the same isolation model AWS uses to keep one customer's workload from touching another's - and a session can run for up to eight hours, long enough for the kind of multi-step, tool-heavy work that shorter serverless timeouts choke on [1]. On developer forums the mental model that keeps surfacing is 'Lambda for agents': you bring the agent logic written in Strands, LangGraph, or CrewAI, and AgentCore runs it. That shorthand is doing a lot of work, because it also points straight at the most common source of confusion, which a later section takes up directly.

The Real Bottleneck Is the Data, Not the Model

The quietly important claim in AWS's own writing on AgentCore is that the difficult part of an enterprise agent is no longer the foundation model - it is the data the model has to reason over. AWS's reference architecture pairs AgentCore with Stardog's semantic layer, a knowledge-graph engine that sits over Amazon Aurora (the operational database) and Amazon Redshift (the analytical warehouse) and lets a Strands agent answer customer-360 questions spanning both without any extract-transform-load pipeline [2]. Rather than copying data into a third store, Stardog uses virtual graphs: it maps each system's records to shared business concepts through ontologies - formal definitions of what a 'customer' or an 'order' actually is - then translates the agent's SPARQL graph queries into the underlying SQL on the fly.

Why route this through AgentCore at all? Because the semantic layer has to be reachable as a governed tool, and AgentCore bundles inbound authentication, hosting, and tool-credential management into one managed service [2]. Stardog can be exposed either as a direct SPARQL tool or as a Stardog Cloud MCP server registered behind AgentCore Gateway. The payoff over ordinary retrieval-augmented generation - where an agent searches loose text chunks - is that business rules and graph-level access control are defined once and reused by every agent and tool. An agent physically cannot return a record the requesting user is not allowed to see, and it can assemble one answer from several systems and show which sources it drew on.

By The Numbers: A Fleet of 20 Agents Against a Two-Year SAP Program

By The Numbers: A Fleet of 20 Agents Against a Two-Year SAP Program
KTern.AI's self-reported efficiency gains after moving SAP transformation onto Amazon Bedrock AgentCore.

If the Stardog architecture is the theory, KTern.AI is the field test. KTern is an SAP-modernization software vendor that rebuilt its platform on AgentCore, deploying more than twenty specialized agents - for reverse-engineering existing SAP systems, forward-engineering new ones, standard adaptation, custom-code analysis, test-case generation, and process and anomaly mining - each defined through configuration rather than hand-written orchestration code [3]. The design choice that makes this hold up over the length of a real engagement is memory: SAP transformations run twelve to eighteen months, and AgentCore's managed memory lets an agent carry project context across that span instead of starting cold every session.

The outcomes KTern reports are the reason the topic earns attention, though they are vendor self-reported figures published in AWS's case study rather than independently audited. The company says the platform cut overall project timelines by 45 percent and compressed discovery-and-assessment work - historically the slowest, most manual phase - by 60 to 70 percent [3]. Configuration-driven builds dropped each agent's deployment time to four-to-six hours, and the team says it reclaimed roughly 480 engineering hours a month that used to go into managing infrastructure, while holding 99.8 percent agent uptime. Read skeptically, these are exactly the numbers a vendor would headline; read charitably, they point at where agentic automation actually bites in the enterprise - not in writing code faster, but in collapsing the discovery, testing, and coordination overhead that dominates long programs.

What Practitioners Are Actually Arguing About

Away from the launch posts, the liveliest discussion among engineers is not whether AgentCore is impressive but what it even is. The single most common question from developers evaluating it is how AgentCore differs from Bedrock itself, and the community has settled into a clean distinction: Bedrock is the model-access platform - APIs, guardrails, evaluations, knowledge bases - while AgentCore is a separate runtime for hosting whatever agent you have already built. You bring the framework and the model; it provides the production scaffolding. Practitioners running it in production tend to single out observability as the feature that actually earned its keep, the thing that moved their proofs-of-concept past the pilot stage.

There is a real counter-current too. One well-known cloud-cost commentator argued that AgentCore is more about guardrails than capabilities - the opposite of what he wants when experimenting - and skepticism runs high toward the wave of AI-generated promotional content around the launch. The cost model gives that skepticism something concrete to hold: AgentCore bills as consumption across many independently metered components rather than a single flat rate, with Runtime charged per vCPU-hour and per GB-hour only during active processing [4]. Independent analyses count roughly a dozen separately billable components spread across several billing patterns, which makes cost forecasting a real exercise rather than an afterthought [5]. The through-line of the reaction is that AWS has bet on selling the unglamorous production layer, and the people closest to shipping agents mostly agree that is where the pain actually is.

Historical Context

2025-07
Amazon Bedrock AgentCore was introduced in preview to securely deploy and operate AI agents at any scale.
2025-10-13
AgentCore reached general availability across nine AWS Regions, adding VPC and PrivateLink support, CloudFormation, resource tagging, and the agent-to-agent (A2A) protocol.
2026-05
AgentCore expanded to AWS GovCloud (US-West) and the AWS for SAP MCP Server reached general availability on AgentCore.

Power Map

Key Players
Subject

Building agentic AI on AWS with Amazon Bedrock AgentCore

AM

Amazon Web Services

Provider of Bedrock AgentCore and the frameworks around it; AWS drove the service to general availability in October 2025 and controls the managed Runtime, Memory, Identity, and Gateway layers that every agent built on the platform depends on.

ST

Stardog

Supplies the knowledge-graph semantic layer that federates queries across Amazon Aurora and Amazon Redshift without ETL, and is exposed to agents either as a direct SPARQL tool or a Stardog Cloud MCP server behind AgentCore Gateway.

KT

KTern.AI

SAP-modernization software vendor that rebuilt its platform on AgentCore using the Strands Agents SDK, serving as the flagship enterprise proof point for running a fleet of specialized agents over multi-year programs.

Fact Check

5 cited
  1. [1] Amazon Bedrock AgentCore is now generally available
  2. [2] Build a semantic layer for agentic AI on AWS with Stardog and Amazon Bedrock AgentCore
  3. [3] Transforming ERP with agentic AI
  4. [4] Amazon Bedrock AgentCore Pricing
  5. [5] Amazon Bedrock AgentCore Pricing Breakdown

Source Articles

Top 4

THE SIGNAL.

Analysts

"Positions AgentCore's general availability as the bridge that lets every developer move agents from pilots to full-scale production quickly."

Swami Sivasubramanian
VP for Agentic AI, AWS

"Calls the AgentCore launch close to game-changing but stresses that autonomy is only acceptable when agents are secure, under control, and auditable."

Mark Roy
Agentic AI Tech Lead, AWS

"Frames security as the top design priority, saying it would be job number zero if it could be, and that the platform is built so two customers never share back-end access."

Shreas Subramanyan
Principal Data Scientist on AgentCore, AWS
The Crowd

"New in agent-browser: AWS Bedrock AgentCore → Cloud browser sessions via AWS infrastructure → Automatic credential resolution (env vars, SSO, IAM roles) → Persistent browser profiles → Live View in the AWS Console npx skills add vercel-labs/agent-browser --skill agentcore"

@@ctatedev191

""Build context-rich research agents with Deep Agents & Bedrock AgentCore". In this post, we build a competitive research agent. This walkthrough targets developers building multi-step AI workflows who need isolated execution environments for their agents."

@@VKazulkin13

"Build a #Serverless image editing agent with #AmazonBedrock AgentCore harness #AWS #Cloud #CloudComputing #AI #AgenticAI"

@@vGazza0

"All the AWS Bedrock AgentCore best practices in one Claude Code skill. So the agent doesn't scour dozens of docs or go trial-and-error"

@u/Ambitious-Pie-782797
Broadcast
Building your first production-ready AI agent with Amazon Bedrock AgentCore | AWS Show & Tell

Building your first production-ready AI agent with Amazon Bedrock AgentCore | AWS Show & Tell

Amazon Bedrock AgentCore Tutorial | Build, Deploy, Operate AI Agents using AgentCore

Amazon Bedrock AgentCore Tutorial | Build, Deploy, Operate AI Agents using AgentCore

Beginner-Friendly Amazon Bedrock AgentCore & Strands Agents Tutorial

Beginner-Friendly Amazon Bedrock AgentCore & Strands Agents Tutorial