A DynamoDB emulator in Rust, backed by SQLite. Starts in milliseconds as a single static binary, and is verified against real AWS by a public conformance suite. Runs as an HTTP server, an MCP server for coding agents, an embeddable library, or in the browser via WebAssembly.
- ✓Open-source license (Apache-2.0)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add dynoxide -- npx -y dynoxide{
"mcpServers": {
"dynoxide": {
"command": "npx",
"args": ["-y", "dynoxide"]
}
}
}MCP Servers overview
# Dynoxide [](https://crates.io/crates/dynoxide-rs) [](https://docs.rs/dynoxide-rs) [](https://github.com/nubo-db/dynoxide/actions/workflows/ci.yml) [](https://paritysuite.org) [](#license) 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. > The crates.io badge above shows the **crate** version, which covers the Rust library alone. Everything you install rather than depend on carries a separate **product** version: the binary, the npm packages, the container images, the browser engine and the Action. That is the number `dynoxide --version` prints and the one to quote in a bug report. [Why there are two](docs/versioning.md). ## 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 <!-- prose:ddb_local_cold_start -->2–3 seconds<!-- /bench --> of cold-start, <!-- prose:ddb_local_idle_memory -->~205 MB<!-- /bench --> of memory at idle, and a <!-- prose:ddb_local_image_size -->~225MB<!-- /bench --> Docker image (<!-- prose:ddb_local_image_size_disk -->~473 MB<!-- /bench --> 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 <!-- prose:dynoxide_idle_memory -->~5.3 MB<!-- /bench -->, and ships as a <!-- prose:dynoxide_binary_size -->~3 MB<!-- /bench --> 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 | <!-- bench:local_startup_embedded -->**~0.2ms**<!-- /bench --> | <!-- bench:local_startup_http -->**~15ms**<!-- /bench --> | <!-- bench:local_startup_ddb_local -->~2,287ms<!-- /bench --> | | GetItem (p50) | <!-- bench:local_getitem_embedded -->9µs<!-- /bench --> | <!-- bench:local_getitem_http -->0.1ms<!-- /bench --> | <!-- bench:local_getitem_ddb_local -->0.8ms<!-- /bench --> | | PutItem throughput | <!-- bench:local_putitem_embedded -->~51,613 ops/s<!-- /bench --> | <!-- bench:local_putitem_http -->~6,703 ops/s<!-- /bench --> | <!-- bench:local_putitem_ddb_local -->~945 ops/s<!-- /bench --> | | 50-test suite (sequential) | <!-- bench:local_ci_suite_embedded_seq -->~484ms<!-- /bench --> | <!-- bench:local_ci_suite_http_seq -->~569ms<!-- /bench --> | <!-- bench:local_ci_suite_ddb_local_seq -->~2,407ms<!-- /bench --> | | 50-test suite (4x parallel) | <!-- bench:local_ci_suite_embedded_par -->~203ms<!-- /bench --> | <!-- bench:local_ci_suite_http_par -->~235ms<!-- /bench --> | <!-- bench:local_ci_suite_ddb_local_par -->~1,189ms<!-- /bench --> | #### CI (GitHub Actions) Numbers from `ubuntu-latest` (<!-- prose:ci_runner_hardware -->4-core Intel(R) Xeon(R) 6973P-C, 16GB RAM<!-- /bench -->). Commit <!-- bench:ci_commit_link_root -->[`49c6338`](../../commit/49c6338adf3ea2efea9991033183ffaaefe1b08a)<!-- /bench -->. | Metric | Dynoxide (embedded) | Dynoxide (HTTP) | DynamoDB Local | LocalStack (all services) | |---|---|---|---|---| | Cold startup | <!-- bench:ci_startup_embedded -->**<1ms**<!-- /bench --> | <!-- bench:ci_startup_http -->**~2ms**<!-- /bench --> | <!-- bench:ci_startup_ddb_local -->~2,831ms<!-- /bench --> | <!-- bench:ci_startup_localstack -->~13,473ms<!-- /bench --> | | GetItem (p50) | <!-- bench:ci_getitem_embedded -->10µs<!-- /bench --> | <!-- bench:ci_getitem_http -->0.2ms<!-- /bench --> | <!-- bench:ci_getitem_ddb_local -->0.7ms<!-- /bench --> | - | | 50-test CI suite | <!-- bench:ci_suite_embedded_seq -->573ms<!-- /bench --> | <!-- bench:ci_suite_http_seq -->533ms<!-- /bench --> | <!-- bench:ci_suite_ddb_local_seq -->1,871ms<!-- /bench --> | - | | Full workload (10K items) | - | <!-- bench:ci_workload_http -->**2.1s**<!-- /bench --> | <!-- bench:ci_workload_ddb_local -->8.2s<!-- /bench --> | - | | Binary / image (download) | <!-- prose:ci_binary_download -->~3 MB<!-- /bench --> | <!-- prose:ci_binary_download_http -->~3 MB<!-- /bench --> | <!-- prose:ci_image_ddb_local_download -->225 MB<!-- /bench --> | <!-- prose:ci_image_localstack_download -->1.1 GB<!-- /bench --> | | Binary / image (on disk) | <!-- bench:ci_binary_size -->7 MB<!-- /bench --> | <!-- bench:ci_binary_size_http -->7 MB<!-- /bench --> | <!-- bench:ci_image_ddb_local -->473 MB<!-- /bench --> | <!-- bench:ci_image_localstack -->1.2 GB<!-- /bench --> | | Idle memory (RSS) | <!-- bench:ci_memory_embedded_idle -->~5.3 MB<!-- /bench --> | <!-- bench:ci_memory_http_idle -->~8 MB<!-- /bench --> | <!-- bench:ci_memory_ddb_local_idle -->~205 MB<!-- /bench --> | <!-- bench:ci_memory_localstack_idle -->~388 MB<!-- /bench --> | > 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 →](benchmarks/README.md) ### Conformance Dynoxide is continuously verified against real DynamoDB by **Parity Suite**, the [DynamoDB conformance suite](https://github.com/paritysuite/dynamodb-conformance) 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](https://paritysuite.org)**: current pass rates for every engine, broken down by tier - **[paritysuite/dynamodb-conformance](https://github.com/paritysuite/dynamodb-conformance#results)**: 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](https://github.com/nubo-db/dynoxide/blob/main/docs/wasm.md) 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. ## Quick Start Run a local server without installing anything: ```sh npx dynoxide --port 8000 ``` Or install it into a project to pin the version, after which `npx dynoxide` uses that copy: ```sh npm install --save-dev dynoxide ``` Or run it in Docker, a drop-in for `amazon/dynamodb-local`: ```sh docker run --rm -p 8000:8000 ghcr.io/nubo-db/dynoxide ``` Point 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](https://github.com/nubo-db/dynoxide/blob/main/docs/installation.md). ## Documentation - [Installation](https://github.com/nubo-db/dynoxide/blob/main/docs/installation.md) - npm, Homebrew, Cargo, binaries, GitHub Actions, and Docker - [HTTP server](https://github.com/nubo-db/dynoxide/blob/main/docs/http-server.md) - running the DynamoDB-compatible HTTP API - [Testcontainers](https://github.com/nubo-db/dynoxide/blob/main/docs/testcontainers.md) - driving the container from a test suite, and the wait strategy it needs - [MCP server](https://github.com/nubo-db/dynoxide/blob/main/docs/mcp.md) - the Model Context Protocol server for coding agents - [DynamoDB Streams](https://github.com/nubo-db/dynoxide/blob/main/docs/streams.md) - enabling and reading stream records - [Import CLI](https://github.com/nubo-db/dynoxide/blob/main/docs/import.md) - loading data, table filtering, and anonymisation - [WebAssembly](https://github.com/nubo-db/dynoxide/blob/main/docs/wasm.md) - the browser build and embed contract - [Using as a Rust library](https://github.com/nubo-db/dynoxide/blob/main/docs/library.md) - embedded mode and feature flags - [Compatibility](https://github.com/nubo-db/dynoxide/blob/main/docs/compatibility-summary.md) - operation, expression, and PartiQL coverage versus DynamoDB - [Versioning](https://github.com/nubo-db/dynoxide/blob/main/docs/versioning.md) - what the version number promises and what forces a major - [Releasing](https://github.com/nubo-db/dynoxide/blob/main/docs/RELEASING.md) - 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](https://
What people ask about dynoxide
What is nubo-db/dynoxide?
+
nubo-db/dynoxide is mcp servers for the Claude AI ecosystem. A DynamoDB emulator in Rust, backed by SQLite. Starts in milliseconds as a single static binary, and is verified against real AWS by a public conformance suite. Runs as an HTTP server, an MCP server for coding agents, an embeddable library, or in the browser via WebAssembly. It has 90 GitHub stars and its last recorded update is dated 2026-09-20.
How do I install dynoxide?
+
You can install dynoxide by cloning the repository (https://github.com/nubo-db/dynoxide) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is nubo-db/dynoxide safe to use?
+
Our security agent has analyzed nubo-db/dynoxide and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains nubo-db/dynoxide?
+
nubo-db/dynoxide is maintained by nubo-db. The last recorded GitHub activity is dated 2026-09-20, with 7 open issues.
Are there alternatives to dynoxide?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy dynoxide to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/nubo-db-dynoxide)<a href="https://claudewave.com/repo/nubo-db-dynoxide"><img src="https://claudewave.com/api/badge/nubo-db-dynoxide" alt="Featured on ClaudeWave: nubo-db/dynoxide" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.