@khuepm/firebase-kiro-power
v1.4.9
Published
Firebase Kiro Power for interacting with Firebase services through the Model Context Protocol
Downloads
15
Maintainers
Readme
Firebase Power
A Kiro Power for Firebase services integration

Overview
Firebase Power is a Kiro Power that enables AI assistants to work directly with Firebase services, including:
- Firestore: Document database operations
- Storage: File management with robust upload capabilities
- Authentication: User management and verification
What is a Kiro Power?
A Kiro Power is a packaged bundle of MCP (Model Context Protocol) servers, documentation, and configuration that extends Kiro IDE's capabilities. Firebase Power brings enterprise-grade Firebase functionality directly into your AI assistant's toolkit, making it easy to manage databases, files, and users through natural language interactions.
Compatibility
This Power works seamlessly with:
- Kiro IDE - One-click installation through the Powers panel
- Claude Desktop - Via MCP configuration
- VS Code / Augment - Via MCP extension
- Cursor - Via MCP configuration
- Other MCP Clients - Any MCP-compliant application
For complete documentation on all features, configuration options, and detailed usage examples, see POWER.md.
⚠️ Known Issue: The
firestore_list_collectionstool may return a Zod validation error in the client logs. This is an erroneous validation error in the MCP SDK, as our investigation confirmed no boolean values are present in the response. Despite the error message, the query still works correctly and returns the proper collection data. This is a log-level error that doesn't affect functionality.
⚡ Quick Start for Kiro IDE
Prerequisites
- Kiro IDE installed
- Firebase project with service account credentials
- Node.js environment
Installation Steps
Open Kiro IDE and navigate to the Powers panel
Search for "Firebase Power" in the available powers
Click Install to add Firebase Power to your Kiro IDE
Configure environment variables:
SERVICE_ACCOUNT_KEY_PATH: Absolute path to your Firebase service account key JSON fileFIREBASE_STORAGE_BUCKET: Your Firebase Storage bucket name (e.g.,your-project-id.firebasestorage.app)
Get your Firebase service account key:
- Go to Firebase Console → Project Settings → Service Accounts
- Click "Generate new private key"
- Save the JSON file securely and note its absolute path
Test the installation: Ask Kiro: "Please test all Firebase MCP tools."
For detailed documentation, troubleshooting, and advanced usage, see POWER.md.
⚡ Quick Start for Other MCP Clients
Prerequisites
- Firebase project with service account credentials
- Node.js environment
1. Install Firebase Power
Add the Firebase Power configuration to your MCP settings file:
- Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json - Augment:
~/Library/Application Support/Code/User/settings.json - Cursor:
[project root]/.cursor/mcp.json
Firebase Power can be installed manually or at runtime via npx (recommended). How you install determines your configuration:
Configure for npx (recommended)
{
"firebase-power": {
"command": "npx",
"args": [
"-y",
"@khuepm/firebase-kiro-power"
],
"env": {
"SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/serviceAccountKey.json",
"FIREBASE_STORAGE_BUCKET": "your-project-id.firebasestorage.app"
}
}
}Configure for local installation
{
"firebase-power": {
"command": "node",
"args": [
"/absolute/path/to/firebase-power/dist/index.js"
],
"env": {
"SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/serviceAccountKey.json",
"FIREBASE_STORAGE_BUCKET": "your-project-id.firebasestorage.app"
}
}
}2. Test the Installation
Ask your AI client: "Please test all Firebase Power tools."
🛠️ Setup & Configuration
1. Firebase Configuration
- Go to Firebase Console → Project Settings → Service Accounts
- Click "Generate new private key"
- Save the JSON file securely
2. Environment Variables
Required
SERVICE_ACCOUNT_KEY_PATH: Path to your Firebase service account key JSON (required)
Optional
FIREBASE_STORAGE_BUCKET: Bucket name for Firebase Storage (defaults to[projectId].appspot.com)MCP_TRANSPORT: Transport type to use (stdioorhttp) (defaults tostdio)MCP_HTTP_PORT: Port for HTTP transport (defaults to3000)MCP_HTTP_HOST: Host for HTTP transport (defaults tolocalhost)MCP_HTTP_PATH: Path for HTTP transport (defaults to/mcp)DEBUG_LOG_FILE: Enable file logging:- Set to
trueto log to~/.firebase-power/debug.log - Set to a file path to log to a custom location
- Set to
3. Client Integration
Claude Desktop
Edit: ~/Library/Application Support/Claude/claude_desktop_config.json
VS Code / Augment
Edit: ~/Library/Application Support/Code/User/settings.json
Cursor
Edit: [project root]/.cursor/mcp.json
For detailed configuration options and troubleshooting, see POWER.md.
📚 API Reference
Firestore Tools
| Tool | Description | Required Parameters |
| ---------------------------------- | ------------------------------ | -------------------------- |
| firestore_add_document | Add a document to a collection | collection, data |
| firestore_list_documents | List documents with filtering | collection |
| firestore_get_document | Get a specific document | collection, id |
| firestore_update_document | Update an existing document | collection, id, data |
| firestore_delete_document | Delete a document | collection, id |
| firestore_list_collections | List root collections | None |
| firestore_query_collection_group | Query across subcollections | collectionId |
Storage Tools
| Tool | Description | Required Parameters |
| ------------------------- | ------------------------- | -------------------------------- |
| storage_list_files | List files in a directory | None (optional: directoryPath) |
| storage_get_file_info | Get file metadata and URL | filePath |
| storage_upload | Upload file from content | filePath, content |
| storage_upload_from_url | Upload file from URL | filePath, url |
Authentication Tools
| Tool | Description | Required Parameters |
| --------------- | ----------------------- | ------------------- |
| auth_get_user | Get user by ID or email | identifier |
💻 Developer Guide
Installation & Building
git clone https://github.com/khuepm/firebase-kiro-power
cd firebase-kiro-power
npm install
npm run buildRunning Tests
First, install and start Firebase emulators:
npm install -g firebase-tools
firebase init emulators
firebase emulators:startThen run tests:
# Run tests with emulator
npm run test:emulator
# Run tests with coverage
npm run test:coverage:emulatorProject Structure
src/
├── index.ts # Server entry point
├── utils/ # Utility functions
└── lib/
└── firebase/ # Firebase service clients
├── authClient.ts # Authentication operations
├── firebaseConfig.ts # Firebase configuration
├── firestoreClient.ts # Firestore operations
└── storageClient.ts # Storage operations🌐 HTTP Transport
Firebase Power supports HTTP transport in addition to the default stdio transport. This allows you to run the server as a standalone HTTP service that can be accessed by multiple clients.
Running with HTTP Transport
To run the server with HTTP transport:
# Using environment variables
MCP_TRANSPORT=http MCP_HTTP_PORT=3000 node dist/index.js
# Or with npx
MCP_TRANSPORT=http MCP_HTTP_PORT=3000 npx @khuepm/firebase-kiro-powerClient Configuration for HTTP
When using HTTP transport, configure your MCP client to connect to the HTTP endpoint:
{
"firebase-power": {
"url": "http://localhost:3000/mcp"
}
}Session Management
The HTTP transport supports session management, allowing multiple clients to connect to the same server instance. Each client receives a unique session ID that is used to maintain state between requests.
🔍 Troubleshooting
Common Issues
Storage Bucket Not Found
If you see "The specified bucket does not exist" error:
- Verify your bucket name in Firebase Console → Storage
- Set the correct bucket name in
FIREBASE_STORAGE_BUCKETenvironment variable
Firebase Initialization Failed
If you see "Firebase is not initialized" error:
- Check that your service account key path is correct and absolute
- Ensure the service account has proper permissions for Firebase services
Composite Index Required
If you receive "This query requires a composite index" error:
- Look for the provided URL in the error message
- Follow the link to create the required index in Firebase Console
- Retry your query after the index is created (may take a few minutes)
Zod Validation Error with firestore_list_collections
If you see a Zod validation error with message "Expected object, received boolean" when using the firestore_list_collections tool:
⚠️ Known Issue: The
firestore_list_collectionstool may return a Zod validation error in the client logs. This is an erroneous validation error in the MCP SDK, as our investigation confirmed no boolean values are present in the response. Despite the error message, the query still works correctly and returns the proper collection data. This is a log-level error that doesn't affect functionality.
Debugging
Enable File Logging
To help diagnose issues, you can enable file logging:
# Log to default location (~/.firebase-power/debug.log)
DEBUG_LOG_FILE=true npx @khuepm/firebase-kiro-power
# Log to a custom location
DEBUG_LOG_FILE=/path/to/custom/debug.log npx @khuepm/firebase-kiro-powerYou can also enable logging in your MCP client configuration:
{
"firebase-power": {
"command": "npx",
"args": ["-y", "@khuepm/firebase-kiro-power"],
"env": {
"SERVICE_ACCOUNT_KEY_PATH": "/path/to/serviceAccountKey.json",
"FIREBASE_STORAGE_BUCKET": "your-project-id.firebasestorage.app",
"DEBUG_LOG_FILE": "true"
}
}
}Real-time Log Viewing
To view logs in real-time:
# Using tail to follow the log file
tail -f ~/.firebase-power/debug.log
# Using a split terminal to capture stderr
npm start 2>&1 | tee logs.txtUsing MCP Inspector
The MCP Inspector provides interactive debugging:
# Install MCP Inspector
npm install -g @mcp/inspector
# Connect to your MCP server
mcp-inspector --connect stdio --command "node ./dist/index.js"📋 Response Formatting
Storage Upload Response Example
{
"name": "reports/quarterly.pdf",
"size": "1024000",
"contentType": "application/pdf",
"updated": "2025-04-11T15:37:10.290Z",
"downloadUrl": "https://storage.googleapis.com/bucket/reports/quarterly.pdf?alt=media",
"bucket": "your-project.appspot.com"
}Displayed to the user as:
## File Successfully Uploaded! 📁
Your file has been uploaded to Firebase Storage:
**File Details:**
- **Name:** reports/quarterly.pdf
- **Size:** 1024000 bytes
- **Type:** application/pdf
- **Last Updated:** April 11, 2025 at 15:37:10 UTC
**[Click here to download your file](https://storage.googleapis.com/bucket/reports/quarterly.pdf?alt=media)**🤝 Contributing
- Fork the repository
- Create a feature branch
- Implement changes with tests (80%+ coverage required)
- Submit a pull request
📄 License
MIT License - see LICENSE file for details
