Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

bluesky-context-server

MCP.Pizza Chef: laulauland

The Bluesky Context Server is a lightweight MCP server designed to enable MCP clients to query Bluesky social network instances. It facilitates real-time access to Bluesky data, allowing AI models integrated via MCP to retrieve structured, up-to-date social context. Installation is straightforward via Smithery or manual setup, making it easy to integrate with clients like Claude Desktop. This server enhances AI workflows by providing direct, live access to Bluesky content, supporting richer, context-aware interactions.

Use This MCP server To

Query Bluesky social network data in real time Integrate Bluesky context into AI workflows Enable AI models to access live Bluesky posts Provide structured Bluesky data to MCP clients Enhance chatbots with Bluesky social context

README

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": ""
			}
		}
	}
}

bluesky-context-server FAQ

How do I install the Bluesky Context Server using Smithery?
Run `npx -y @smithery/cli install @laulauland/bluesky-context-server --client claude` to install automatically for Claude Desktop.
Can I manually configure the Bluesky Context Server?
Yes, place the server code locally and configure your MCP client (e.g., Claude Desktop) with the appropriate command, args, and environment variables.
What environment variables are required for the Bluesky Context Server?
You need to set `BLUESKY_APP_KEY` and `BLUESKY_IDENTIFIER` to authenticate and access Bluesky instances.
Is the Bluesky Context Server compatible with multiple MCP clients?
While primarily demonstrated with Claude Desktop, it can be configured for other MCP clients supporting custom servers.
Does the Bluesky Context Server support real-time data querying?
Yes, it enables MCP clients to query Bluesky instances in real time for up-to-date social context.
What programming language is the Bluesky Context Server written in?
The server is implemented in TypeScript, making it easy to customize and extend.
Can the Bluesky Context Server be used with LLMs from providers like OpenAI, Claude, and Gemini?
Yes, it integrates with MCP clients that can connect to various LLM providers including OpenAI, Claude, and Gemini.