search-posts
Find posts on Bluesky by entering a search query, specifying result limit (1-100), and choosing sorting order (most relevant or recent).
Instructions
Search for posts on Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results to fetch (1-100) | |
query | Yes | Search query | |
sort | No | Sort order for search results - 'top' for most relevant or 'latest' for most recent | top |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 50,
"description": "Number of results to fetch (1-100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query",
"type": "string"
},
"sort": {
"default": "top",
"description": "Sort order for search results - 'top' for most relevant or 'latest' for most recent",
"enum": [
"top",
"latest"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}