Hive MCP Server

by gluneau
Verified

vote_on_post

Vote on a Hive post (upvote or downvote) using the configured Hive account.

Input Schema

NameRequiredDescriptionDefault
authorYesAuthor of the post to vote on
permlinkYesPermlink of the post to vote on
weightYesVote weight from -10000 (100% downvote) to 10000 (100% upvote)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "author": { "description": "Author of the post to vote on", "type": "string" }, "permlink": { "description": "Permlink of the post to vote on", "type": "string" }, "weight": { "description": "Vote weight from -10000 (100% downvote) to 10000 (100% upvote)", "maximum": 10000, "minimum": -10000, "type": "number" } }, "required": [ "author", "permlink", "weight" ], "type": "object" }