Firebase MCP Server

firestore_add_document

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" }