Firebase MCP

by gannonh
Verified

firestore_add_document

Add structured data to a Firestore collection using Firebase MCP. Specify the collection name and document data to store information efficiently in Firestore.

Instructions

Add a document to a Firestore collection

Input Schema

NameRequiredDescriptionDefault
collectionYesCollection name
dataYesDocument data

Input Schema (JSON Schema)

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