Hive MCP Server

by gluneau
Verified

create_comment

Create a comment on an existing Hive post or reply to another comment.

Input Schema

NameRequiredDescriptionDefault
allow_curation_rewardsNoWhether to allow curation rewards
allow_votesNoWhether to allow votes on the comment
beneficiariesNoOptional list of beneficiaries to receive a portion of the rewards
bodyYesContent of the comment, can include Markdown formatting
max_accepted_payoutNoOptional maximum accepted payout (e.g. '1000.000 HBD')
parent_authorYesUsername of the post author or comment you're replying to
parent_permlinkYesPermlink of the post or comment you're replying to
percent_hbdNoOptional percent of HBD in rewards (0-10000, where 10000 = 100%)
permalinkNoOptional custom permalink for your comment. If not provided, one will be generated

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "allow_curation_rewards": { "default": true, "description": "Whether to allow curation rewards", "type": "boolean" }, "allow_votes": { "default": true, "description": "Whether to allow votes on the comment", "type": "boolean" }, "beneficiaries": { "anyOf": [ { "anyOf": [ { "not": {} }, { "anyOf": [ { "items": { "additionalProperties": false, "properties": { "account": { "type": "string" }, "weight": { "maximum": 10000, "minimum": 1, "type": "number" } }, "required": [ "account", "weight" ], "type": "object" }, "type": "array" }, { "type": "null" } ] } ] }, { "type": "null" } ], "description": "Optional list of beneficiaries to receive a portion of the rewards" }, "body": { "description": "Content of the comment, can include Markdown formatting", "minLength": 1, "type": "string" }, "max_accepted_payout": { "description": "Optional maximum accepted payout (e.g. '1000.000 HBD')", "type": "string" }, "parent_author": { "description": "Username of the post author or comment you're replying to", "type": "string" }, "parent_permlink": { "description": "Permlink of the post or comment you're replying to", "type": "string" }, "percent_hbd": { "description": "Optional percent of HBD in rewards (0-10000, where 10000 = 100%)", "maximum": 10000, "minimum": 0, "type": "number" }, "permalink": { "description": "Optional custom permalink for your comment. If not provided, one will be generated", "type": "string" } }, "required": [ "parent_author", "parent_permlink", "body" ], "type": "object" }