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 backed by SQLite. Runs as an HTTP server, an MCP server for coding agents, or embeds directly into Rust and iOS applications as a library.
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–5 seconds of cold-start, ~181 MB of memory at idle, and a ~225MB Docker image (~471 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.1 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 7763, 16GB RAM). Commit be8bfbc.
Metric | Dynoxide (embedded) | Dynoxide (HTTP) | DynamoDB Local | LocalStack (all services) |
Cold startup | <1ms | ~2ms | ~3,481ms | ~12,803ms |
GetItem (p50) | 15µs | 0.3ms | 0.8ms | - |
50-test CI suite | 794ms | 759ms | 2,466ms | - |
Full workload (10K items) | - | 3.0s | 11.2s | - |
Binary / image (download) | ~3 MB | ~3 MB | 225 MB | 1.1 GB |
Binary / image (on disk) | 7 MB | 7 MB | 471 MB | 1.2 GB |
Idle memory (RSS) | ~5.1 MB | ~8 MB | ~181 MB | ~513 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
Install from npm and start a local server:
npm install --save-dev dynoxide
npx dynoxide --port 8000Or 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
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 (preview) - the browser build and embed contract
Using as a Rust library - embedded mode and feature flags
Compatibility - operation, expression, and PartiQL coverage versus DynamoDB
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceMCP 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.Last updated313MIT
- Flicense-qualityDmaintenanceAn MCP server that gives LLM agents full access to Amazon DynamoDB, supporting table management, querying, scanning, and item CRUD operations.Last updated
- 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.Last updated141AGPL 3.0
- Alicense-qualityAmaintenanceMCP servers for SQL databases. One package per engine (SQLite, libSQL, MySQL, MariaDB, Postgres), two tools, read-only by default, secrets never in logs.Last updated414MIT
Related MCP Connectors
MCP server for InsForge BaaS — database, storage, edge functions, and deployments
Local-first RAG engine with MCP server for AI agent integration.
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nubo-db/dynoxide'
If you have feedback or need assistance with the MCP directory API, please join our Discord server