search-channels
Search for social platform channels using platform-specific queries. Input platform name, search term, and optional parameters like limit, cursor, and channel inclusion for targeted results.
Instructions
Search for channels on a social platform
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Cursor for pagination | |
includeChannels | No | Whether to include channel information in results | |
limit | No | Maximum number of results to return | |
platform | Yes | The platform to search on (e.g., 'farcaster') | |
query | Yes | The search query |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"cursor": {
"description": "Cursor for pagination",
"type": "string"
},
"includeChannels": {
"description": "Whether to include channel information in results",
"type": "boolean"
},
"limit": {
"description": "Maximum number of results to return",
"type": "number"
},
"platform": {
"description": "The platform to search on (e.g., 'farcaster')",
"type": "string"
},
"query": {
"description": "The search query",
"type": "string"
}
},
"required": [
"platform",
"query"
],
"type": "object"
}