Hive MCP Server

by gluneau
Verified

get_account_history

Retrieves transaction history for a Hive account with optional operation type filtering.

Input Schema

NameRequiredDescriptionDefault
limitNoNumber of operations to return
operation_filterNoOperation types to filter for. Can be provided as an array ['transfer', 'vote'] or a comma-separated string 'transfer,vote'
usernameYesHive username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "default": 10, "description": "Number of operations to return", "maximum": 100, "minimum": 1, "type": "number" }, "operation_filter": { "anyOf": [ { "items": { "type": "string" }, "type": "array" }, { "type": "string" } ], "description": "Operation types to filter for. Can be provided as an array ['transfer', 'vote'] or a comma-separated string 'transfer,vote'" }, "username": { "description": "Hive username", "type": "string" } }, "required": [ "username" ], "type": "object" }