Talk to your database
in plain English

A Chrome extension for your local Azure Cosmos DB emulator. Ask questions, explore schemas, write data β€” the AI writes and runs actual queries for you.

Azure Cosmos DB Sidekick ● Connected
πŸ“‚ ordersDb β€Ί orders
Find all orders over $100

Here are the orders with totals over $100:

SELECT * FROM c WHERE c.total > 100
idcustomertotal
ord-041Alice$1,299
ord-087Bob$849
ord-112Carol$234
3 documents Β· 4.2 RU
Ask about your data…

See it in action

Everything you need to explore your data

Query in Plain English

Ask questions about your data naturally. The AI writes SQL, executes it against the emulator, and returns results with RU cost.

Exploring data with natural language

Get started in minutes

Four steps to have the extension running against your local Azure Cosmos DB emulator.

Step 01

Clone the repository

Grab the source code from GitHub.

$ git clone https://github.com/abhirockzz/cosmosdb-sidekick.git
Step 02

Build the sidecar

Install dependencies and compile TypeScript.

$ cd sidecar && npm install
Step 03

Load the extension

Open chrome://extensions, enable Developer mode, click Load unpacked β†’ select the extension/ folder.

Step 04

Start the sidecar

Keep this running in a terminal while you use the extension.

$ cd sidecar && npm start