remove_wallets_from_group
Delete specific wallets from a defined group within the MCP server. Provide the group name and wallet list to manage blockchain operations efficiently.
Instructions
Remove wallets from a specified group.
Expects the group name and a list of wallet names, returns a list of RemoveWalletFromGroupResponse.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
remove_wallets_from_group_requests | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"RemoveWalletsFromGroupRequest": {
"properties": {
"group": {
"description": "Name of the group to remove wallets from",
"title": "Group",
"type": "string"
},
"wallet": {
"description": "List of wallet names to remove from the group",
"title": "Wallet",
"type": "string"
}
},
"required": [
"group",
"wallet"
],
"title": "RemoveWalletsFromGroupRequest",
"type": "object"
},
"RemoveWalletsFromGroupRequestContainer": {
"properties": {
"remove_wallets_from_group_requests": {
"items": {
"$ref": "#/$defs/RemoveWalletsFromGroupRequest"
},
"title": "Remove Wallets From Group Requests",
"type": "array"
}
},
"required": [
"remove_wallets_from_group_requests"
],
"title": "RemoveWalletsFromGroupRequestContainer",
"type": "object"
}
},
"properties": {
"remove_wallets_from_group_requests": {
"$ref": "#/$defs/RemoveWalletsFromGroupRequestContainer"
}
},
"required": [
"remove_wallets_from_group_requests"
],
"title": "remove_wallets_from_groupArguments",
"type": "object"
}