← BSV MCPInstall
Wallet

wallet_gatherCollectionInfo

Analyzes a folder of images and gathers all necessary information for minting an ordinals collection. This includes validating images, checking wallet balance, estimating costs, and suggesting metadata. Use this before minting to ensure everything is ready.

Read as Markdown

Result

Collection information from the legacy local wallet.

Permissions

Requires the configured wallet or identity context. Wallet read permissions apply; this handler does not request a payment.

Inputs and availability

Full catalog · Legacy local wallet; Legacy local identity

FieldType / requiredDescription
folderPathstring
Required
Path to folder containing images to analyze for collection

Nested fields are required only when their parent object or array item is supplied.

Full input schema
{
  "type": "object",
  "properties": {
    "folderPath": {
      "type": "string",
      "description": "Path to folder containing images to analyze for collection"
    }
  },
  "required": [
    "folderPath"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}