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.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Add a document to a collection. Parameters: collection (string), data (object)
List documents with filtering. Parameters: collection (string)
Get a specific document. Parameters: collection (string), id (string)
Update an existing document. Parameters: collection (string), id (string), data (object)
Delete a document. Parameters: collection (string), id (string)
List root collections. Parameters: None
Query across subcollections. Parameters: collectionId (string)
List files in a directory. Parameters: None (optional: directoryPath (string))
Get file metadata and URL. Parameters: filePath (string)
Upload file from content. Parameters: filePath (string), content (string)
Upload file from URL. Parameters: filePath (string), url (string)
Get user by ID or email. Parameters: identifier (string)