Bluesky Context Server is a Model Context Protocol (MCP) server that allows AI assistants like Claude to connect with and query Bluesky social network instances. This integration enables AI models to access Bluesky content, retrieve posts, and gather information from the decentralized social platform. The server acts as a bridge between AI assistants and the Bluesky ecosystem, enhancing the AI's ability to provide relevant information from this growing social network.
Bluesky Context Server is a lightweight MCP server that enables AI assistants to query and interact with Bluesky social network instances. This integration allows AI models to access content from the Bluesky platform, enhancing their ability to provide up-to-date information from this decentralized social network.
The easiest way to install Bluesky Context Server for Claude Desktop is through Smithery:
npx -y @smithery/cli install @laulauland/bluesky-context-server --client claude
This command automatically configures the MCP server for use with Claude Desktop.
If you prefer to install manually:
// ~/Library/Application Support/Claude/config.json
{
"mcpServers": {
"bluesky": {
"command": "/path/to/bun",
"args": [
"/path/to/bluesky-context-server/index.ts"
],
"env": {
"BLUESKY_APP_KEY": "",
"BLUESKY_IDENTIFIER": ""
}
}
}
}
Replace /path/to/bun
with the actual path to your Bun executable and /path/to/bluesky-context-server
with the path where you saved the repository.
The server requires the following environment variables:
BLUESKY_APP_KEY
: Your Bluesky application keyBLUESKY_IDENTIFIER
: Your Bluesky identifierYou can set these in the config.json file as shown above.
Once installed and configured, Claude will be able to access Bluesky content when needed. The MCP server handles the communication between Claude and the Bluesky platform, allowing Claude to retrieve posts, user information, and other content from Bluesky.
If you encounter issues with the Bluesky Context Server:
This project is available under the MIT license.