!firestore
Manage and interact with Firestore databases by configuring project credentials and exploring data structures within the db-mcp-tool environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connection | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connection": {
"additionalProperties": false,
"properties": {
"keyFilename": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"projectId",
"keyFilename"
],
"type": "object"
}
},
"required": [
"connection"
],
"type": "object"
}