Farcaster MCP Server

get-channel-casts

Get casts from a specific Farcaster channel

Input Schema

NameRequiredDescriptionDefault
channelYesChannel name (e.g., 'aichannel') or URL
limitNoMaximum number of casts to return (default: 10)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "channel": { "description": "Channel name (e.g., 'aichannel') or URL", "type": "string" }, "limit": { "description": "Maximum number of casts to return (default: 10)", "type": "number" } }, "required": [ "channel" ], "type": "object" }