Connect Aws Dynamodb to AI agents

Connect Aws Dynamodb to Claude, Codex, Cursor, or other AI agents for your entire team. Metorial security, governance, observability, and gives your team a unified Magic MCP url to connect.

Supported Tools

transact_get_items

Transact Get Items

Atomically retrieve up to 100 items from one or more DynamoDB tables in the same account and region. Use this when multiple strongly related reads must succeed or fail together.

list_streams

List Streams

List DynamoDB Streams in the configured region, optionally filtered to one table.

execute_partiql

Execute PartiQL

Execute a PartiQL statement against DynamoDB. PartiQL is a SQL-compatible query language that supports SELECT, INSERT, UPDATE, and DELETE operations. Useful for users familiar with SQL syntax as an alternative to DynamoDB's native expression-based API.

create_table

Create Table

Create a new DynamoDB table with a specified key schema, attribute definitions, and optional secondary indexes. Supports configuring billing mode (on-demand or provisioned), table class, DynamoDB Streams, and tags.

scan_items

Scan Items

Scan an entire DynamoDB table or secondary index, returning all items or those matching a filter expression. More flexible but less efficient than Query — reads every item in the table. Use Query when possible for better performance.

describe_table

Describe Table

Retrieve detailed information about a DynamoDB table including its key schema, provisioned throughput, indexes, stream configuration, and current status.

describe_stream

Describe Stream

Describe a DynamoDB Stream, including status, table name, key schema, and shards.

delete_item

Delete Item

Delete a single item from a DynamoDB table by its primary key. Supports conditional deletes and optionally returns the deleted item.

update_item

Update Item

Update specific attributes of an existing item in a DynamoDB table using update expressions. Unlike PutItem, this modifies only the specified attributes without replacing the entire item. Supports SET, REMOVE, ADD, and DELETE operations within update expressions, and conditional updates.

update_table

Update Table

Update a DynamoDB table's settings including billing mode, provisioned throughput, stream configuration, and table class. Can also be used to manage global secondary indexes (create, update, or delete).

transact_write_items

Transact Write Items

Execute a transactional write with up to 100 actions across one or more DynamoDB tables. All actions succeed or all fail together (ACID). Supports Put, Update, Delete, and ConditionCheck operations within a single transaction.

batch_get_items

Batch Get Items

Retrieve multiple items from one or more DynamoDB tables in a single request using their primary keys. Supports up to 100 items per batch and optional projection expressions.

delete_table

Delete Table

Permanently delete a DynamoDB table and all of its items. This action cannot be undone.

query_items

Query Items

Query items from a DynamoDB table or secondary index using a key condition expression on the partition key (and optionally the sort key). Efficient for retrieving items that share the same partition key. Supports filtering, projection, pagination, and sort order control.

restore_table_from_backup

Restore Table From Backup

Create a new DynamoDB table by restoring an existing on-demand backup.

get_item

Get Item

Retrieve a single item from a DynamoDB table by its primary key. Returns the full item or specific attributes via projection expression. Supports strongly consistent reads.

describe_backup

Describe Backup

Describe an existing DynamoDB on-demand backup, including backup status and source table details.

get_stream_records

Get Stream Records

Read records from a DynamoDB Stream shard. The tool creates a shard iterator for the requested position and returns the next page of stream records.

manage_ttl

Manage TTL

View or configure Time to Live (TTL) settings on a DynamoDB table. When enabled, items with an expired TTL attribute are automatically deleted. Useful for session data, temporary records, or implementing data retention policies.

put_item

Put Item

Create or replace an item in a DynamoDB table. The entire item is replaced if an item with the same primary key exists. Use DynamoDB JSON format for attribute values (e.g., `{"S": "hello"}` for strings, `{"N": "42"}` for numbers). Supports conditional writes via condition expressions.

list_tables

List Tables

List all DynamoDB table names in the configured region. Supports pagination for accounts with many tables.

batch_write_items

Batch Write Items

Put or delete multiple items across one or more DynamoDB tables in a single request. Supports up to 25 put/delete operations per batch. Does not support update operations — use individual UpdateItem for that.

manage_backups

Manage Backups

Create, list, or delete on-demand backups for DynamoDB tables. Also supports viewing and toggling point-in-time recovery (PITR) settings.

More integrations teams use with Aws Dynamodb

GitHub

Manage repositories, issues, and pull requests. Create and configure branches, star repositories, review code, and merge changes. Automate CI/CD workflows with GitHub Actions, manage workflow runs, secrets, and artifacts. Track issues with labels, milestones, and assignees. Search across code, repositories, issues, and users. Manage organizations, teams, and memberships. Create and manage projects, gists, packages, deployments, and environments. Access security alerts including code scanning, secret scanning, and Dependabot alerts. Read and write file contents in repositories. Manage webhooks, notifications, and codespaces.

Sharepoint

Manage SharePoint sites, document libraries, lists, and files. Create, read, update, and delete lists and list items with custom columns. Upload, download, move, copy, and version files in document libraries. Search across sites, files, folders, lists, and list items using Microsoft Search. Manage permissions at site, list, and item levels with granular access control. Define and manage content types and site columns. Subscribe to webhooks for list and library change notifications. Retrieve site properties and search for sites across Microsoft 365.

Salesforce

Manage CRM data including Accounts, Contacts, Leads, Opportunities, Cases, and custom objects. Create, read, update, and delete records. Query data using SOQL and search across objects using SOSL. Perform bulk data operations for large-scale imports, exports, and migrations. Execute composite requests to batch multiple operations in a single API call. Access analytics, reports, and dashboards. Manage files and attachments associated with records. Interact with Chatter feeds, posts, and groups for social collaboration. Subscribe to real-time change events via Change Data Capture and Platform Events. Manage org metadata including custom objects, fields, layouts, and workflows. Query data using GraphQL for precise data retrieval across related objects.

Airtable

Create, read, update, and delete records in Airtable bases and tables. Manage base schemas including creating tables and fields. Filter records using formulas, sort by fields, and scope queries to specific views. Upsert records to find, create, or update in a single call. Upload attachments to records, read and write record comments, list accessible bases, and receive real-time base change events through webhooks.

Bitbucket

Manage Git repositories, pull requests, and CI/CD pipelines on Bitbucket Cloud. Create, fork, and configure repositories within workspaces and projects. Create, review, approve, merge, and decline pull requests with inline code comments. Browse source code, list commits, and manage branches and tags. Track issues with the built-in issue tracker. Trigger, monitor, and manage Bitbucket Pipelines. List workspace members, configure repository default reviewers and branch restrictions, create and manage repository webhooks, and search code across repositories.

Heroku

Deploy, manage, and scale applications on Heroku's cloud platform. Create and configure apps, scale dynos, provision add-ons (databases, caching, etc.), manage configuration variables, build and release code, add custom domains and SSL certificates, manage collaborators and team permissions, configure pipelines for continuous delivery, set up log drains, and sync data with Salesforce via Heroku Connect. Subscribe to webhooks for real-time notifications on app changes, builds, releases, dyno lifecycle events, and more.

Technical notes for Aws Dynamodb

Create, manage, and delete DynamoDB tables with configurable capacity modes and key schemas. Perform CRUD operations on items using primary keys, including conditional writes and attribute-level updates. Query items by partition and sort key conditions, or scan entire tables with filter and projection expressions. Support PartiQL (SQL-compatible) syntax for data operations. Manage secondary indexes (GSI and LSI) for alternative query patterns. Execute multi-item transactions with all-or-nothing guarantees across tables. Configure global tables for multi-region active-active replication. Create and restore on-demand backups, enable point-in-time recovery, and set TTL for automatic item expiration. Import and export data between S3 and DynamoDB. Monitor table changes via DynamoDB Streams for near-real-time change data capture with configurable stream view types.

Connect Aws Dynamodb to production AI agents

See how Metorial gives Aws Dynamodb access the governance, tracing, and security controls teams need.

Frequently asked questions

Common questions about connecting Aws Dynamodb to AI agents with Metorial.

  1. Can Metorial connect Aws Dynamodb to AI agents?
    Yes. Metorial connects AI agents to Aws Dynamodb through a governed integration layer, so teams can use the provider while keeping access controlled and observable.
  2. Metorial is MCP compatible and lets teams expose approved provider tools to MCP-capable agents and clients through a controlled access layer.
  3. Metorial applies policies across users, groups, providers, agents, and individual tools, then records the context around every agent interaction.
  4. Yes. Metorial records provider activity so teams can inspect tool calls, troubleshoot integrations, and give security teams the visibility they need.