langgraph-checkpoint-aws
A LangChain checkpointer implementation that uses Bedrock Session Management Service and ElastiCache Valkey to enable stateful and resumable LangGraph agents.
What it is and what it does
LangGraph Checkpoint AWS is a persistence layer for LangGraph agents that integrates with AWS services. It offers three main storage strategies: Bedrock AgentCore Memory for managed session storage, DynamoDB with optional S3 offloading for checkpoint and document storage with vector search, and Valkey (Redis-compatible) for high-performance caching and checkpointing. The package acts as a checkpointer and document store, allowing LangGraph agents to resume from saved state across sessions and to retrieve long-term memories and preferences.
The package is designed for developers building stateful, resumable agents on AWS infrastructure. It handles the integration between LangGraph's checkpoint interface and AWS backend services, including automatic compression, TTL management, and intelligent offloading of large checkpoints to S3. Runtime dependencies are langgraph, langgraph-checkpoint, boto3, and typing_extensions; Valkey support is optional.
Use it for:
- Build resumable chatbot agents that persist conversation state across sessions using Bedrock AgentCore Memory.
- Store agent checkpoints in DynamoDB with automatic S3 offloading for long-running or memory-intensive workflows.
- Cache LLM responses and computation results using Valkey to reduce latency and API costs.
- Implement semantic search over agent memories and preferences stored in DynamoDB vector indexes.
- Deploy multi-actor agent systems where each actor maintains separate session state via configurable thread and actor IDs.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides AWS-based persistence backends for LangGraph agents, including Bedrock AgentCore Memory, DynamoDB with S3 offloading, and Valkey checkpoint and document storage.
Yes. The package is actively maintained, has low install friction, carries a permissive MIT license, and provides well-integrated AWS persistence options for LangGraph agents. Choose it if you are building stateful agents on AWS and need checkpoint storage, document retrieval, or LLM response caching. No security vulnerabilities are known.
Install
langgraph-checkpoint-aws on PyPI
pip
pip install langgraph-checkpoint-awsuv
uv add langgraph-checkpoint-awspoetry
poetry add langgraph-checkpoint-awsInstalling langgraph-checkpoint-aws
Before you install
Low friction install with four runtime dependencies. Actively maintained as of 2026-08-14 with recent releases; repository shows 340 stars and no archived status.
License in practice
MIT license permits commercial and private use with minimal restrictions; you must include a copy of the license and copyright notice.
Quickstart
pip install langgraph-checkpoint-aws
from langgraph_checkpoint_aws import AgentCoreMemorySaver
from langgraph.prebuilt import create_react_agent
checkpointer = AgentCoreMemorySaver("YOUR_MEMORY_ID", region_name="us-west-2")
graph = create_react_agent(model=model, tools=tools, checkpointer=checkpointer)
config = {"configurable": {"thread_id": "session-1", "actor_id": "agent-1"}}
response = graph.invoke({"messages": [("human", "your prompt")]}, config=config)
Requires Python 3.10 or later and AWS credentials configured for the target region.
Verify before relying
- Whether DynamoDB vector search via semantic indexes requires additional setup or AWS service enablement beyond standard DynamoDB.
- Performance characteristics and latency profiles for each storage backend under production load.
- Exact compression algorithm and storage overhead reduction achieved by enable_checkpoint_compression.
- Whether Valkey optional dependency is required for all use cases or only for specific storage backends.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (<4.0,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — langgraph-checkpoint, langgraph, boto3, typing_extensions |
| Maintenance | actively maintained — 1 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 567,212/month — #5,970 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: langgraph_checkpoint_aws-1.2.2-py3-none-any.whl
Keywords: aws, bedrock, langchain, langgraph, checkpointer, dynamodb, elasticache, valkey
Tags
More Application Frameworks packages
FastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
textualTextual is a Python framework for building…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
mcpBuild and connect to Model Context Protocol…
permissive · top 1,000 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
langgraph-checkpoint-redisProvides Redis-backed checkpoint storage and…
permissive · top 5,000 on PyPI
langgraph-checkpointProvides the base interface and serialization…
permissive · top 1,000 on PyPI
langgraph-checkpoint-postgresProvides a Postgres-backed checkpoint saver for…
permissive · top 5,000 on PyPI
langgraph-checkpoint-mongodbProvides a MongoDB-backed checkpoint storage…
unclear · top 15,000 on PyPI
bedrock-agentcoreDeploy AI agents to AWS Bedrock AgentCore with…
permissive · top 5,000 on PyPI
langgraph-checkpoint-sqliteProvides a SQLite-backed checkpoint saver for…
permissive · top 5,000 on PyPI
langgraph-runtime-inmemProvides an in-memory runtime implementation…
unclear · top 5,000 on PyPI
langmemLangMem provides memory management tools for…
permissive · top 15,000 on PyPI
langgraph-supervisorBuilds hierarchical multi-agent systems where a…
permissive · top 15,000 on PyPI
langchain-postgresProvides LangChain abstractions for vector…
permissive · top 5,000 on PyPI