Hive MCP Server

by gluneau
Verified

get_vesting_delegations

Get a list of vesting delegations made by a specific Hive account

Input Schema

NameRequiredDescriptionDefault
fromNoOptional starting account for pagination
limitNoMaximum number of delegations to retrieve
usernameYesHive account to get delegations for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "from": { "description": "Optional starting account for pagination", "type": "string" }, "limit": { "default": 100, "description": "Maximum number of delegations to retrieve", "maximum": 1000, "minimum": 1, "type": "number" }, "username": { "description": "Hive account to get delegations for", "type": "string" } }, "required": [ "username" ], "type": "object" }