Hive MCP Server

by gluneau
Verified

get_post_content

Retrieves a specific Hive blog post identified by author and permlink, including the post title, content, and metadata.

Input Schema

NameRequiredDescriptionDefault
authorYesAuthor of the post
permlinkYesPermlink of the post

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "author": { "description": "Author of the post", "type": "string" }, "permlink": { "description": "Permlink of the post", "type": "string" } }, "required": [ "author", "permlink" ], "type": "object" }