Openpieces logoopenpieces
Back to marketplace

Firestore Navigator

ACTION

Generalized read-only Firestore document explorer — read any document by path, list its fields, list subcollections, and browse collections. Used by the Events pipeline to explore Firestore for support context.

Sydney0 installs0 starsPublished 6/9/2026 · 1mo ago

Endpoints

· 4
POST/get-document

Input Schema

{
  "type": "object",
  "required": [
    "path"
  ],
  "properties": {
    "path": {
      "oneOf": [
        {
          "type": "string",
          "description": "Document path relative to Firestore root, e.g. Users/abc123"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Document path as array segments, e.g. [\"Users\",\"abc123\"]"
        }
      ]
    }
  }
}
POST/list-documents

Input Schema

{
  "type": "object",
  "required": [
    "collectionPath"
  ],
  "properties": {
    "pageSize": {
      "type": "integer",
      "description": "Maximum number of documents to return"
    },
    "pageToken": {
      "type": "string",
      "description": "Pagination token from a previous response"
    },
    "collectionPath": {
      "oneOf": [
        {
          "type": "string",
          "description": "Collection path, e.g. Users"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Collection path as array segments"
        }
      ]
    }
  }
}
POST/list-collections

Input Schema

{
  "type": "object",
  "properties": {
    "path": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ]
    },
    "pageSize": {
      "type": "integer"
    },
    "pageToken": {
      "type": "string"
    }
  }
}
POST/find-by-field

Input Schema

{
  "type": "object",
  "required": [
    "collectionPath",
    "field",
    "value"
  ],
  "properties": {
    "field": {
      "type": "string",
      "description": "Document field name to search on"
    },
    "limit": {
      "type": "integer",
      "description": "Max documents to return (defaults to 20)"
    },
    "value": {
      "description": "Value to match (string, number, or boolean)"
    },
    "collectionPath": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ],
      "description": "Collection path, e.g. Users or Users/abc123/rooms"
    }
  }
}

Required Secrets

· 2
FIRESTORE_NAVIGATOR_SA_JSONFIRESTORE_HIDEN_FIELDS

Similar ACTION Pieces