Hive MCP Server

by gluneau
Verified

get_posts_by_user

Retrieves posts authored by or in the feed of a specific Hive user.

Input Schema

NameRequiredDescriptionDefault
categoryYesType of user posts to fetch (blog = posts by user, feed = posts from users they follow)
limitNoNumber of posts to return (1-20)
usernameYesHive username to fetch posts for

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "description": "Type of user posts to fetch (blog = posts by user, feed = posts from users they follow)", "enum": [ "blog", "feed" ], "type": "string" }, "limit": { "default": 10, "description": "Number of posts to return (1-20)", "maximum": 20, "minimum": 1, "type": "number" }, "username": { "description": "Hive username to fetch posts for", "type": "string" } }, "required": [ "category", "username" ], "type": "object" }