Labsco
keturiosakys logo

Bluesky

β˜… 31

from keturiosakys

integrates with Bluesky API to query and search feeds and posts.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedAccount requiredNeeds API keys

Bluesky Context Server

smithery badge

A Model Context Protocol (MCP) server that enables MCP clients like Claude Desktop to interact with Bluesky. Query your profile, search posts, get your timeline, and more directly from your AI assistant.

Available MCP Tools

This server provides the following tools that Claude can use:

Profile & Account Tools

bluesky_get_profile

Get your Bluesky profile information including display name, bio, follower count, etc.

  • Parameters: None
  • Returns: Complete profile data

bluesky_get_follows

Get a list of accounts you follow.

  • Parameters:
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: List of followed accounts with profile info

bluesky_get_followers

Get a list of accounts following you.

  • Parameters:
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: List of followers with profile info

Post & Feed Tools

bluesky_get_posts

Get your recent posts.

  • Parameters:
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: Your recent posts with engagement data

bluesky_get_personal_feed

Get your personalized Bluesky timeline/feed.

  • Parameters:
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: Posts from your personalized feed

bluesky_get_liked_posts

Get posts you've liked.

  • Parameters:
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: Posts you've liked

Search Tools

bluesky_search_posts

Search for posts across Bluesky.

  • Parameters:
    • query (required): Search query string
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: Posts matching your search query

bluesky_search_profiles

Search for Bluesky user profiles.

  • Parameters:
    • query (required): Search query string
    • limit (optional): Max items to return (default 50, max 100)
    • cursor (optional): Pagination cursor for next page
  • Returns: User profiles matching your search query