Firebase MCP

by gannonh
Verified

firestore_update_document

Modify a specific document in a Firestore collection by providing the collection name, document ID, and updated data using the Firebase MCP server.

Instructions

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" }
ID: x4i8z2xmrq