Azure MCP Server

by mashriram
Verified

cosmosdb_item_create

Create a new item in a Cosmos DB container

Input Schema

NameRequiredDescriptionDefault
container_nameYesName of the Cosmos DB container
database_nameNoName of the Cosmos DB database (optional, defaults to 'defaultdb')
itemYesItem data to create (JSON object)

Input Schema (JSON Schema)

{ "properties": { "container_name": { "description": "Name of the Cosmos DB container", "type": "string" }, "database_name": { "description": "Name of the Cosmos DB database (optional, defaults to 'defaultdb')", "type": "string" }, "item": { "description": "Item data to create (JSON object)", "type": "object" } }, "required": [ "container_name", "item" ], "type": "object" }