mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-01-30 04:22:03 +00:00
creating intital scaffolding for claude code plugins
This commit is contained in:
8
external_plugins/firebase/.claude-plugin/plugin.json
Normal file
8
external_plugins/firebase/.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "firebase",
|
||||
"description": "Google Firebase MCP integration. Manage Firestore databases, authentication, cloud functions, hosting, and storage. Build and manage your Firebase backend directly from your development workflow.",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Google"
|
||||
}
|
||||
}
|
||||
6
external_plugins/firebase/.mcp.json
Normal file
6
external_plugins/firebase/.mcp.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"firebase": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "firebase-tools@latest", "mcp"]
|
||||
}
|
||||
}
|
||||
32
external_plugins/firebase/README.md
Normal file
32
external_plugins/firebase/README.md
Normal file
@@ -0,0 +1,32 @@
|
||||
# Firebase Plugin
|
||||
|
||||
Google Firebase MCP integration for Claude Code.
|
||||
|
||||
## What It Does
|
||||
|
||||
Manage Firestore databases, authentication, cloud functions, hosting, and storage. Build and manage your Firebase backend directly from your development workflow.
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Node.js installed
|
||||
- Firebase CLI credentials (logged in via `firebase login` or Application Default Credentials)
|
||||
|
||||
## Optional Configuration
|
||||
|
||||
Add arguments to customize behavior:
|
||||
- `--dir ABSOLUTE_DIR_PATH` - Set project context directory
|
||||
- `--only FEATURE_1,FEATURE_2` - Limit exposed tools (comma-separated)
|
||||
|
||||
Example with options:
|
||||
```json
|
||||
{
|
||||
"firebase": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "firebase-tools@latest", "mcp", "--dir", "/path/to/project", "--only", "auth,firestore"]
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Learn More
|
||||
|
||||
See [Firebase MCP Documentation](https://firebase.google.com/docs/ai-assistance/mcp-server) for detailed setup instructions.
|
||||
Reference in New Issue
Block a user