CouchDB MCP Server

createMangoIndex

Create a new Mango index (CouchDB 3.x+)

Input Schema

NameRequiredDescriptionDefault
dbNameYesDatabase name
fieldsYesFields to index
indexNameYesName of the index

Input Schema (JSON Schema)

{ "properties": { "dbName": { "description": "Database name", "type": "string" }, "fields": { "description": "Fields to index", "items": { "type": "string" }, "type": "array" }, "indexName": { "description": "Name of the index", "type": "string" } }, "required": [ "dbName", "indexName", "fields" ], "type": "object" }