list_single_group
Retrieve detailed information for a specific wallet group by providing its name. This tool enables users to access SingleGroupInfo for efficient blockchain operations within the Armor Crypto MCP environment.
Instructions
Retrieve details for a single wallet group.
Expects the group name as a parameter, returns SingleGroupInfo.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_single_group_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ListSingleGroupRequest": {
"properties": {
"group_name": {
"description": "Name of the group to retrieve details for",
"title": "Group Name",
"type": "string"
}
},
"required": [
"group_name"
],
"title": "ListSingleGroupRequest",
"type": "object"
}
},
"properties": {
"list_single_group_requests": {
"$ref": "#/$defs/ListSingleGroupRequest"
}
},
"required": [
"list_single_group_requests"
],
"title": "list_single_groupArguments",
"type": "object"
}