Hive MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_account_infoA | Fetches detailed information about a Hive blockchain account including balance, authority, voting power, and other account metrics. |
| get_account_historyB | Retrieves transaction history for a Hive account with optional operation type filtering. |
| get_vesting_delegationsA | Get a list of vesting delegations made by a specific Hive account |
| get_post_contentA | Retrieves a specific Hive blog post identified by author and permlink, including the post title, content, and metadata. |
| get_posts_by_tagB | Retrieves Hive posts filtered by a specific tag and sorted by a category like trending, hot, or created. |
| get_posts_by_userA | Retrieves posts authored by or in the feed of a specific Hive user. |
| vote_on_postB | Vote on a Hive post (upvote or downvote) using the configured Hive account. |
| send_tokenB | Send HIVE or HBD tokens to another Hive account using the configured account credentials. |
| create_postB | Create a new blog post on the Hive blockchain using the configured account credentials. |
| create_commentB | Create a comment on an existing Hive post or reply to another comment. |
| sign_messageA | Sign a message using a Hive private key from environment variables. |
| verify_signatureB | Verify a digital signature against a Hive public key |
| get_chain_propertiesA | Fetch current Hive blockchain properties and statistics |
| encrypt_messageB | Encrypt a message for a specific Hive account using memo encryption |
| decrypt_messageB | Decrypt an encrypted message received from a specific Hive account |
| send_encrypted_messageB | Send an encrypted message to a Hive account using a small token transfer |
| get_encrypted_messagesB | Retrieve encrypted messages from account history with optional decryption |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| create-post | Create a new post on Hive blockchain |
| analyze-account | Analyze a Hive account's activity and statistics |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 17 tools
Each tool targets a distinct resource or action on the Hive blockchain, such as posts, comments, voting, messaging, token transfers, account info, blockchain properties, and signing. No two tools have overlapping purposes; even related tools like encrypt/decrypt and send/retrieve encrypted messages are clearly differentiated.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., create_post, get_account_info, send_token). Verbs are appropriately chosen for the action, and there is no mixing of styles (e.g., camelCase or other conventions).
With 17 tools, the server covers a comprehensive range of Hive operations without being overwhelming. Each tool serves a clear purpose, and the count is well-scoped for the domain's complexity.
The tool set covers major CRUD-like operations for posts, comments, voting, messaging, token transfers, account details, and blockchain properties. However, there is no tool for updating posts (editing) or delegating HP, which are notable gaps for a full-featured Hive interface.