Skip to content
LangChain

bluesky profile scraper for LangChain

io.github.cookient16/bluesky-profile-scraper

Bulk Bluesky profiles plus full follower/following exports via the open AT Protocol. Pay per record.

client:LangChain transport:streamable-http

Install bluesky profile scraper in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "bluesky-profile-scraper": {
            "transport": "streamable_http",
            "url": "https://mcp.apify.com/?actors=cooki/bluesky-profile-scraper",
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

bluesky profile scraper in other clients