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
Dixa MCP ServerA FastMCP server implementation for the Dixa API, providing resources and tools for managing convers...View
User FeedbackSimple MCP Server to enable a human-in-the-loop workflow in tools like Cline and Cursor. This is esp...View
Instagram DMsThis is a Model Context Protocol (MCP) server for sending instagram Direct Messages.View
LinkedIn MCP ServerA powerful Model Context Protocol server for LinkedIn API integrationView
Apex X (Twitter) ManagementMCP Server for X (Twitter) Management An MCP server built with Apex that lets you fully manage your...View
Claude Assist MCPA Model Context Protocol (MCP) server that enables Claude Code to communicate with Claude Desktop. T...View