BlueSky MCP Server
by berlinbra
Verified
bluesky_search_posts
Search for posts on Bluesky
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for next page of results | |
limit | No | Maximum number of posts to return (default 25, max 100) | |
query | Yes | The search query |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor for next page of results",
"type": "string"
},
"limit": {
"default": 25,
"description": "Maximum number of posts to return (default 25, max 100)",
"type": "integer"
},
"query": {
"description": "The search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}