Firebase MCP

by gannonh
Verified

firestore_list_collections

List collections in Firestore. If documentPath is provided, returns subcollections under that document; otherwise returns root collections.

Input Schema

NameRequiredDescriptionDefault
documentPathNoOptional parent document path
limitNoNumber of collections to return
pageTokenNoToken for pagination to get the next page of results

Input Schema (JSON Schema)

{ "properties": { "documentPath": { "description": "Optional parent document path", "type": "string" }, "limit": { "default": 20, "description": "Number of collections to return", "type": "number" }, "pageToken": { "description": "Token for pagination to get the next page of results", "type": "string" } }, "required": [], "type": "object" }