Tap into the Bluesky social network through the AT Protocol. Most tools work without authentication against the public API — you can read profiles, browse feeds, list followers, and view threads. Post search requires BYO credentials.
| Tool | Auth | Purpose |
|---|---|---|
| ------ | ------ | --------- |
get_profile | Public | User profile by handle (e.g., jay.bsky.team) |
get_posts | Public | Recent posts from a user's feed |
search_posts | Auth required | Search posts by keyword |
get_feed | Public | Browse a feed generator (default: What's Hot) |
get_followers | Public | List a user's followers |
get_follows | Public | List accounts a user follows |
get_thread | Public | Full thread from a post's AT URI |
resolve_handle | Public | Resolve a handle to its DID |
curl -s -X POST https://gateway.pipeworx.io/bluesky/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_posts","arguments":{"handle":"jay.bsky.team","limit":5}}}'
Each post includes the text, timestamp, like count, repost count, and reply count.
search_posts requires Bluesky credentials. Pass them as query parameters on the gateway URL:
https://gateway.pipeworx.io/bluesky/mcp?bsky_handle=you.bsky.social&bsky_app_password=xxxx-xxxx-xxxx
All other tools work anonymously.
{
"mcpServers": {
"pipeworx-bluesky": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/bluesky/mcp"]
}
}
}
共 1 个版本