getDocument
Retrieve specific documents from a CouchDB database by providing the database name and document ID using this MCP server tool.
Instructions
Get a document from a database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dbName | Yes | Database name | |
docId | Yes | Document ID |
Input Schema (JSON Schema)
{
"properties": {
"dbName": {
"description": "Database name",
"type": "string"
},
"docId": {
"description": "Document ID",
"type": "string"
}
},
"required": [
"dbName",
"docId"
],
"type": "object"
}