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