Firebase
Summary
Firebase MCP server provides a standardized interface for AI assistants to interact with Firebase services including Authentication, Firestore, and Storage. Built by Gannon Hall, this TypeScript implementation enables LLM clients to perform user management, document database operations, and file storage tasks through a consistent set of MCP tools. Particularly useful for developers building AI-powered applications that require seamless integration with Firebase's backend services.
Available Actions(12)
firestore_add_document
Add a document to a collection. Required Parameters: collection (string), data (object)
firestore_list_documents
List documents with filtering. Required Parameters: collection (string)
firestore_get_document
Get a specific document. Required Parameters: collection (string), id (string)
firestore_update_document
Update an existing document. Required Parameters: collection (string), id (string), data (object)
firestore_delete_document
Delete a document. Required Parameters: collection (string), id (string)
firestore_list_collections
List root collections. Required Parameters: None
firestore_query_collection_group
Query across subcollections. Required Parameters: collectionId (string)
storage_list_files
List files in a directory. Required Parameters: None (optional: directoryPath (string))
storage_get_file_info
Get file metadata and URL. Required Parameters: filePath (string)
storage_upload
Upload file from content. Required Parameters: filePath (string), content (blob)
storage_upload_from_url
Upload file from URL. Required Parameters: filePath (string), url (string)
auth_get_user
Get user by ID or email. Required Parameters: identifier (string)
Avis de la Communauté
Aucun avis encore. Soyez le premier à donner votre avis !
Connectez-vous pour rejoindre la conversation