CouchDB MCP Server

getDocument

Get a document from a database

Input Schema

NameRequiredDescriptionDefault
dbNameYesDatabase name
docIdYesDocument ID

Input Schema (JSON Schema)

{ "properties": { "dbName": { "description": "Database name", "type": "string" }, "docId": { "description": "Document ID", "type": "string" } }, "required": [ "dbName", "docId" ], "type": "object" }