load_json_doc_from_db
Retrieve a JSON document by specifying its ID and the database name for efficient data access and management in the MCP environment.
Instructions
Load a JSON document by ID from a document database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
databaseName | No | name of document database to load from | |
id | Yes | ID of document to load |
Input Schema (JSON Schema)
{
"properties": {
"databaseName": {
"description": "name of document database to load from",
"type": "string"
},
"id": {
"description": "ID of document to load",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}