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
mcp-proxyA standalone binary for connecting STDIO based MCP clients to HTTP (SSE) based MCP servers.View
MCP TTS VOICEVOXEnglish | 日本語View
Human-in-the-LoopAn MCP (Model Context Protocol) server that allows AI assistants to ask questions to humans via Disc...View
SendblueAn MCP (Model Context Protocol) server that exposes Sendblue's iMessage and SMS capabilities as tool...View
Prompt for User Input MCP ServerAn MCP (Model Context Protocol) server that enables AI models to prompt users for input directly thr...View
vv-mcpVOICEVOX MCP Server - Claude DesktopとClaude Codeで音声合成を利用するためのMCPサーバーView