Hive MCP Server

by gluneau
Verified

get_posts_by_tag

Retrieves Hive posts filtered by a specific tag and sorted by a category like trending, hot, or created.

Input Schema

NameRequiredDescriptionDefault
categoryYesSorting category for posts (e.g. trending, hot, created)
limitNoNumber of posts to return (1-20)
tagYesThe tag to filter posts by

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "category": { "description": "Sorting category for posts (e.g. trending, hot, created)", "enum": [ "active", "cashout", "children", "comments", "created", "hot", "promoted", "trending", "votes" ], "type": "string" }, "limit": { "default": 10, "description": "Number of posts to return (1-20)", "maximum": 20, "minimum": 1, "type": "number" }, "tag": { "description": "The tag to filter posts by", "type": "string" } }, "required": [ "category", "tag" ], "type": "object" }