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. Required Parameters: collection (string), data (object)
List documents with filtering. Required Parameters: collection (string)
Get a specific document. Required Parameters: collection (string), id (string)
Update an existing document. Required Parameters: collection (string), id (string), data (object)
Delete a document. Required Parameters: collection (string), id (string)
List root collections. Required Parameters: None
Query across subcollections. Required Parameters: collectionId (string)
List files in a directory. Required Parameters: None (optional: directoryPath (string))
Get file metadata and URL. Required Parameters: filePath (string)
Upload file from content. Required Parameters: filePath (string), content (string)
Upload file from URL. Required Parameters: filePath (string), url (string)
Get user by ID or email. Required Parameters: identifier (string)