get_item
Retrieve a specific item from an Azure Cosmos DB container using its unique ID. Ideal for fetching targeted data entries directly through the MCP server interface.
Instructions
Retrieves an item from a Azure Cosmos DB container by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
containerName | Yes | Name of the container | |
id | Yes | ID of the item to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"containerName": {
"description": "Name of the container",
"type": "string"
},
"id": {
"description": "ID of the item to retrieve",
"type": "string"
}
},
"required": [
"containerName",
"id"
],
"type": "object"
}