Beyond MCP Server

get-user-content

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of posts to return
platformYesSocial platform (farcaster, twitter, telegram)
userIdYesUser ID or username on the platform

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Maximum number of posts to return", "type": "number" }, "platform": { "description": "Social platform (farcaster, twitter, telegram)", "type": "string" }, "userId": { "description": "User ID or username on the platform", "type": "string" } }, "required": [ "platform", "userId" ], "type": "object" }