utility
Read-only data conversion and skill discovery operations. Select operation and pass that operation's arguments in args.
Read as MarkdownResult
The selected operation's result. Follow its linked full-tool reference for the exact result format.
Permissions
The selected operation retains its underlying permissions and setup requirements.
Operations
Pass the full tool name as operation and its input object as args. Available operations vary by wallet configuration.
Inputs and availability
Compact catalog · Before wallet setup; Legacy local wallet; Legacy local identity; Local Vault · broadcasting disabled; Local Vault · all roles; Local Vault · payment role only; Project · payments scope; External BRC-100 wallet; Local Vault + sponsor; Droplit wallet
| Field | Type / required | Description |
|---|---|---|
| operation | "utils_convertData" | "utils_find_skills" Required | See schema for details. |
| args | object Optional | See schema for details. default: {} |
Nested fields are required only when their parent object or array item is supplied.
Full input schema
{
"type": "object",
"properties": {
"operation": {
"type": "string",
"enum": [
"utils_convertData",
"utils_find_skills"
]
},
"args": {
"default": {},
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
},
"required": [
"operation"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}