GnistAI GnistAI
Log in

Bluesky

Bluesky social network — search posts, view profiles, browse feeds via the AT Protocol public API.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 6 tools tools 6 6 Media

Data source: Bluesky (AT Protocol)

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/bluesky/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-bluesky": {
      "url": "https://context.gnist.ai/mcp/bluesky/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/bluesky/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_posts", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/bluesky/

6 endpoints available:

Shell
curl "https://context.gnist.ai/rest/bluesky/search_posts?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/bluesky/search_posts",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc bluesky

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (6)

search_posts
Search Bluesky posts by keyword.
ParameterTypeRequiredDescription
querystringrequiredSearch query for Bluesky posts (e.g. "AI agents", "climate change").
limitintegeroptionalMax results to return (1-100). Default 10. (default: 10)
sortstringoptionalSort order: "latest" or "top". Default "latest". (default: "latest")
get_profile
Get a Bluesky user profile by handle or DID.
ParameterTypeRequiredDescription
actorstringrequiredBluesky handle (e.g. "bsky.app") or DID (e.g. "did:plc:z72i7hdynmk6r22z27h6tvur").
get_author_feed
Get recent posts from a Bluesky user.
ParameterTypeRequiredDescription
actorstringrequiredBluesky handle (e.g. "bsky.app") or DID.
limitintegeroptionalMax posts to return (1-100). Default 10. (default: 10)
get_post_thread
Get a post thread by AT URI, including replies.
ParameterTypeRequiredDescription
uristringrequiredAT Protocol URI of the post (e.g. "at://did:plc:.../app.bsky.feed.post/abc123").
depthintegeroptionalMax reply depth to fetch (0-100). Default 6. (default: 6)
search_actors
Search Bluesky users by name or handle.
ParameterTypeRequiredDescription
querystringrequiredSearch query for Bluesky users (e.g. "bluesky", "journalist").
limitintegeroptionalMax results to return (1-100). Default 10. (default: 10)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related