Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

Amazon QLDB MCP Config

The control plane for Amazon QLDB

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/amazonaws-com-qldb.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "amazonaws-com-qldb": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/amazonaws-com-qldb"
      ],
      "env": {
        "AMAZON_QLDB_API_KEY": "your_amazon_qldb_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "amazonaws-com-qldb": {
      "url": "https://mcpbridge.org/config/amazonaws-com-qldb.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "amazonaws-com-qldb": {
      "url": "https://mcpbridge.org/config/amazonaws-com-qldb.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/amazonaws-com-qldb.json to fetch programmatically.

{
  "mcpServers": {
    "amazonaws-com-qldb": {
      "command": "npx",
      "args": ["-y","@mcp/amazonaws-com-qldb"],
      "env": {
      "AMAZON_QLDB_API_KEY": "your_amazon_qldb_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/amazonaws-com-qldb.json

Environment Variables

AMAZON_QLDB_API_KEY

Replace your_amazon_qldb_api_key with your actual amazon qldb api key

Endpoints

GET/ledgers/{name}/journal-kinesis-streams/{streamId}

DescribeJournalKinesisStream

DELETE/ledgers/{name}/journal-kinesis-streams/{streamId}

CancelJournalKinesisStream

GET/ledgers

ListLedgers

POST/ledgers

CreateLedger

GET/ledgers/{name}

DescribeLedger

DELETE/ledgers/{name}

DeleteLedger

PATCH/ledgers/{name}

UpdateLedger

GET/ledgers/{name}/journal-s3-exports/{exportId}

DescribeJournalS3Export

GET/ledgers/{name}/journal-s3-exports

ListJournalS3ExportsForLedger

POST/ledgers/{name}/journal-s3-exports

ExportJournalToS3