Firebase MCP

by gannonh
Verified

firestore_update_document

Update a document in a Firestore collection

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
dataYesUpdated document data
idYesDocument ID

Input Schema (JSON Schema)

{ "properties": { "collection": { "description": "Collection name", "type": "string" }, "data": { "description": "Updated document data", "type": "object" }, "id": { "description": "Document ID", "type": "string" } }, "required": [ "collection", "id", "data" ], "type": "object" }