# 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.

## 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.

## Definition 1 (full)

Registered in: Legacy local wallet; Legacy local identity.

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.

| Field | Type | Required | Description | Constraints |
| --- | --- | --- | --- | --- |
| folderPath | string | Yes | Path to folder containing images to analyze for collection |  |

Nested requirements apply when their parent is supplied.

### Input schema

```json
{
  "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"
}
```

[All tools](https://bsvmcp.com/docs/tools)