Bluesky MCP Server

Bluesky MCP Server

MCP server for Bluesky/AT Protocol enabling LLM clients and agents to authenticate, search, post, like, follow, and manage chat on Bluesky.

Category
Visit Server

README

Bluesky MCP Server

Cloudflare Workers Hono MCP License Visitors

Cloudflare Worker MCP server for Bluesky/AT Protocol, built with Hono and the Model Context Protocol SDK.

What It Does

The server exposes a broad set of Bluesky tools for LLM clients and agents:

  • Authentication and session introspection
  • Handle and DID resolution
  • Profile lookup, timeline, author feeds, threads, followers, follows, notifications
  • Search for posts and users
  • Create posts, replies, quotes, and deletes
  • Like, unlike, repost, and unrepost
  • Follow, unfollow, mute, unmute, block, and unblock
  • Blob uploads and image posts
  • Bluesky chat conversation listing, retrieval, creation, and messaging

Configuration

Set these as Cloudflare Worker secrets or vars:

  • BLUESKY_IDENTIFIER - your Bluesky handle or DID
  • BLUESKY_APP_PASSWORD - recommended app password
  • BLUESKY_PASSWORD - fallback password variable
  • BLUESKY_SERVICE_URL - optional custom PDS/service URL
  • BLUESKY_PDS_URL - optional alias for the service URL

You can also pass per-request credentials using headers (useful for multi-user clients):

  • x-bluesky-identifier
  • x-bluesky-app-password (preferred) or x-bluesky-password
  • x-bluesky-service-url or x-bluesky-pds-url

Example:

curl -X POST "https://bluesky-mcp-server.shraj.workers.dev/mcp" \
  -H "content-type: application/json" \
  -H "x-bluesky-identifier: your.handle.bsky.social" \
  -H "x-bluesky-app-password: your-app-password" \
  -H "x-bluesky-service-url: https://bsky.social" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Example:

wrangler secret put BLUESKY_IDENTIFIER
wrangler secret put BLUESKY_APP_PASSWORD

Quick Start

bun install
bun run dev

The MCP endpoint is available at /mcp.

Deploy

bun run deploy

Deployed URL:

https://bluesky-mcp-server.shraj.workers.dev

The root URL redirects to this repository on GitHub; use /mcp for MCP clients.

Client Setup

Copy-paste setup guides for IDEs and desktop clients live in docs/clients.md.

Cursor

Add this to your Cursor MCP config:

{
  "mcpServers": {
    "bluesky": {
      "url": "https://bluesky-mcp-server.shraj.workers.dev/mcp"
    }
  }
}

For authenticated tools (post, reply, like, etc.), pass headers:

{
  "x-bluesky-identifier": "your.handle.bsky.social",
  "x-bluesky-app-password": "your-app-password"
}

If your client asks for a server URL override, use:

{
  "x-bluesky-service-url": "https://bsky.social"
}

Agent Setup

Copy-paste setup guides for agent-style clients live in docs/agents.md.

Development

bun run typecheck
bun run build

Open Source Notes

This repo is set up to be easy to fork and run:

  • TypeScript-first source
  • Minimal runtime assumptions beyond Cloudflare Workers
  • No hidden setup scripts
  • Copyable client and agent config examples
  • Clear environment variable naming for self-hosting

Contributing

See CONTRIBUTING.md for the contribution workflow and repo conventions.

Security

See SECURITY.md for responsible disclosure guidance.

Inspiration

This server was shaped by common tool surfaces in Bluesky and AT Protocol MCP projects such as brianellin/bsky-mcp-server, semioz/bluesky-mcp, and cameronrye/atproto-mcp.

Sponsored / Created By

Sponsored/created by IndexFast.

Follow us on Bluesky: indexfast.bsky.social

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured