Hive MCP Server

by gluneau
Verified

get_account_info

Fetches detailed information about a Hive blockchain account including balance, authority, voting power, and other account metrics.

Input Schema

NameRequiredDescriptionDefault
usernameYesHive username to fetch information for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "username": { "description": "Hive username to fetch information for", "type": "string" } }, "required": [ "username" ], "type": "object" }