Bluesky Context Server

smithery badge

A simple MCP server that can enable MCP clients to query Bluesky instances.

Usage

Installing via Smithery

To install Bluesky Context Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @laulauland/bluesky-context-server --client claude

Installing manually

  1. Place the code somewhere on your computer.
  2. Configure your Claude Desktop app to use the MCP server.
// ~/Library/Application Support/Claude/config.json
{
	"mcpServers": {
		"bluesky": {
			"command": "/Users/laurynas-fp/.bun/bin/bun",
			"args": [
				"<path_to_this_directory>/bluesky-context-server/index.ts"
			],
			"env": {
				"BLUESKY_APP_KEY": "",
				"BLUESKY_IDENTIFIER": ""
			}
		}
	}
}

Related in Communication - Secure MCP Servers

ServerSummaryActions
UnichatSend requests to OpenAI, MistralAI, Anthropic, xAI, Google AI, DeepSeek, Alibaba, Inception using MC...View
MCP Server WhisperA Model Context Protocol (MCP) server for advanced audio transcription and processing using OpenAI's...View
SmartleadView
Freshdesk MCP ServerA Model Context Protocol (MCP) server implementation for Freshdesk API v2 integration. This server p...View
Phone-a-Friend MCP ServerAn AI-to-AI consultation system that enables one AI to "phone a friend" (another AI) for critical th...View
Twilio Manager MCPA Model Context Protocol (MCP) implementation for managing Twilio resources. This package provides t...View