Dynoxide
OfficialAllows AI agents to interact with an emulated DynamoDB instance, supporting table management, item CRUD, query, scan, transactions, PartiQL, streams, TTL, and tags for local development, testing, and CI.
Dynoxide
A DynamoDB emulator in Rust, backed by SQLite. Runs as an HTTP server or an MCP server for coding agents, embeds into Rust and iOS applications as a library, and compiles to WebAssembly for the browser.
Why Dynoxide?
I built Dynoxide because DynamoDB Local is slow, heavy, and can't embed. It needs a JVM, and the typical Docker-based setups adds 2–3 seconds of cold-start, ~193 MB of memory at idle, and a ~225MB Docker image (~473 MB on disk) before you've done anything useful. If you're running integration tests, that's Docker starting, the JVM warming up, and your pipeline waiting.
Dynoxide is a native binary. It starts in milliseconds, idles at ~5.0 MB, and ships as a ~3 MB download. Point any DynamoDB SDK at it and your tests just work.
For Rust projects, there's also an embedded mode - direct API calls via Database::memory() with no HTTP layer at all. Each test gets an isolated in-memory database with zero startup cost. And because it compiles to a native library with no runtime dependencies, it runs on platforms where DynamoDB Local can't, including iOS.
Performance
Local Development (Apple Silicon)
Metric | Dynoxide (embedded) | Dynoxide (HTTP) | DynamoDB Local |
Cold startup | ~0.2ms | ~15ms | ~2,287ms |
GetItem (p50) | 9µs | 0.1ms | 0.8ms |
PutItem throughput | ~51,613 ops/s | ~6,703 ops/s | ~945 ops/s |
50-test suite (sequential) | ~484ms | ~569ms | ~2,407ms |
50-test suite (4x parallel) | ~203ms | ~235ms | ~1,189ms |
CI (GitHub Actions)
Numbers from ubuntu-latest (4-core AMD EPYC 9V74, 16GB RAM). Commit 54a2cb6.
Metric | Dynoxide (embedded) | Dynoxide (HTTP) | DynamoDB Local | LocalStack (all services) |
Cold startup | <1ms | ~2ms | ~2,833ms | ~11,848ms |
GetItem (p50) | 14µs | 0.3ms | 0.8ms | - |
50-test CI suite | 802ms | 755ms | 2,310ms | - |
Full workload (10K items) | - | 2.8s | 10.5s | - |
Binary / image (download) | ~3 MB | ~3 MB | 225 MB | 1.1 GB |
Binary / image (on disk) | 7 MB | 7 MB | 473 MB | 1.3 GB |
Idle memory (RSS) | ~5.0 MB | ~8 MB | ~193 MB | ~510 MB |
The gap is wider on Apple Silicon because the faster CPU amplifies the difference between native code and JVM overhead. Both are real measurements of the same benchmark suite. Full methodology and per-operation breakdowns →
Conformance
Dynoxide is continuously verified against real DynamoDB by Parity Suite, the DynamoDB conformance suite that runs one test matrix against AWS itself and every major DynamoDB emulator. Pass rates move as the suite grows and each engine changes, so rather than pin a snapshot that goes stale, see the live standings:
Live standings: current pass rates for every engine, broken down by tier
paritysuite/dynamodb-conformance: the suite itself, the raw results, and how each target is run
Disclosure: Dynoxide and Parity Suite are maintained by the same person. The suite scores Dynoxide on the same public matrix it runs against every other engine, and the results and test code are open.
This covers the native build. The WebAssembly build is scored as its own row: it passes every test it implements, with a far higher skip count than any other target because several operations are still missing.
How It Compares
Dynoxide | DynamoDB Local | LocalStack (all services) | dynalite | |
Language | Rust | Java | Python + Java | Node.js |
Storage | SQLite | SQLite | SQLite (via DDB Local) | LevelDB |
Runtime dependency | - | JVM | Docker + LocalStack | Node.js |
Embeddable (Rust / iOS) | ✓ | - | - | - |
MCP server for agents | ✓ | - | - | - |
LocalStack uses DynamoDB Local internally as its DynamoDB engine, so its startup and memory overhead includes DynamoDB Local's JVM plus LocalStack's own Python routing layer.
Related MCP server: dynamodb-mcp-server
Quick Start
Run a local server without installing anything:
npx dynoxide --port 8000Or install it into a project to pin the version, after which npx dynoxide uses that copy:
npm install --save-dev dynoxideOr run it in Docker, a drop-in for amazon/dynamodb-local:
docker run --rm -p 8000:8000 ghcr.io/nubo-db/dynoxidePoint any AWS SDK or DynamoDB client at http://localhost:8000. For Homebrew, Cargo, pre-built binaries, and embedding as a Rust library, see the installation guide.
Documentation
Installation - npm, Homebrew, Cargo, binaries, GitHub Actions, and Docker
HTTP server - running the DynamoDB-compatible HTTP API
Testcontainers - driving the container from a test suite, and the wait strategy it needs
MCP server - the Model Context Protocol server for coding agents
DynamoDB Streams - enabling and reading stream records
Import CLI - loading data, table filtering, and anonymisation
WebAssembly - the browser build and embed contract
Using as a Rust library - embedded mode and feature flags
Compatibility - operation, expression, and PartiQL coverage versus DynamoDB
Versioning - what the version number promises and what forces a major
Releasing - release cadence and process
Supported Operations
Dynoxide implements the DynamoDB API across tables, items, query and scan, batches, transactions, PartiQL, streams, TTL, and tags, with GSI and LSI support, the full expression syntax, and DynamoDB-compatible pagination, validation, and error codes. For the operation-by-operation breakdown and a comparison, see the compatibility summary.
Limitations
Dynoxide is built for local development, testing, and CI, not as a production DynamoDB replacement, so two classes of thing are missing on purpose.
Cloud-only operations with no local equivalent aren't implemented: backups and point-in-time restore, global tables, Kinesis streaming, resource policies, and capacity management. Call one and you get an UnknownOperationException.
A few behavioural differences are also worth knowing when you test against it:
ConsistentReadis accepted but changes nothing. SQLite is strongly consistent, so every read already is - you can't reproduce eventually-consistent reads.Streams expose a single shard.
DescribeStreamreturns one shard, and itsExclusiveStartShardIdandLimitpaging parameters are accepted but ignored.Transaction-contention errors (
TransactionConflictException,TransactionInProgressException) aren't emulated - there's no concurrent contention in a single process.
For the per-feature support matrix, see the live capability matrix; the full operation-by-operation breakdown is in the compatibility summary.
Acknowledgements
Dynoxide's DynamoDB API semantics and validation logic were informed by dynalite, the excellent DynamoDB emulator built on LevelDB by Michael Hart and now maintained by the Architect team.
Dynoxide is a clean-room Rust implementation. No code was ported directly, but dynalite's thorough approach to matching live DynamoDB behaviour, including edge cases and error messages, was an invaluable reference.
Dynoxide uses SQLite as its storage layer. (AWS's DynamoDB Local also uses SQLite internally.)
License
Dual-licensed under MIT and Apache 2.0. See LICENSE-MIT and LICENSE-APACHE.
Trademarks
Amazon DynamoDB, DynamoDB, and AWS are trademarks of Amazon.com, Inc. or its affiliates. Dynoxide is an independent project and is not affiliated with, endorsed by, or sponsored by Amazon, and nothing here grants any right to use those names or marks.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for InsForge BaaS — database, storage, edge functions, and deployments
Query, join, profile, clean and convert CSV/JSON/Parquet with server-side DuckDB over MCP.
MCP server for Superserve sandboxes: create, exec, and manage Firecracker microVMs
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server providing backend access to PostgreSQL, Storage (Supabase/S3), Iceberg data lake, and SQL seeds. It offers 32 tools for database queries, storage operations, seed management, and more.313MIT
- FlicenseAqualityDmaintenanceAn MCP server that gives LLM agents full access to Amazon DynamoDB, supporting table management, querying, scanning, and item CRUD operations.11-
- AlicenseAqualityAmaintenanceOperations toolchain for SQLite, Cloudflare D1, and Turso. Every command is available as both a CLI and an MCP tool: inspect, diff, migrate, monitor, back up, and repair databases. 22 stdio tools, read-only by default.141AGPL 3.0
- AlicenseNot gradedqualityAmaintenanceMCP servers for SQL databases. One package per engine (SQLite, libSQL, MySQL, MariaDB, Postgres), two tools, read-only by default, secrets never in logs.9 npm5MIT