Hive MCP Server

by gluneau
Verified

send_token

Send HIVE or HBD tokens to another Hive account using the configured account credentials.

Input Schema

NameRequiredDescriptionDefault
amountYesAmount of tokens to send
currencyYesCurrency to send: HIVE or HBD
memoNoOptional memo to include with the transaction
toYesRecipient Hive username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "amount": { "description": "Amount of tokens to send", "exclusiveMinimum": 0, "type": "number" }, "currency": { "description": "Currency to send: HIVE or HBD", "enum": [ "HIVE", "HBD" ], "type": "string" }, "memo": { "description": "Optional memo to include with the transaction", "type": "string" }, "to": { "description": "Recipient Hive username", "type": "string" } }, "required": [ "to", "amount", "currency" ], "type": "object" }