Query and search Bluesky feeds and posts.
Visit ProjectBluesky Context Server is a simple MCP (Modular Context Processing) server designed to enable clients to query Bluesky (a decentralized social media platform) feeds and posts. It acts as an intermediatory bridge between MCP clients and Bluesky instances.
To install the Bluesky Context Server automatically, use Smithery with the following command:
npx -y @smithery/cli install @laulauland/bluesky-context-server --client claude
config.json
:// ~/Library/Application Support/Claude/config.json
{
"mcpServers": {
"bluesky": {
"command": "/Users/laurynas-fp/.bun/bin/bun",
"args": ["/bluesky-context-server/index.ts"],
"env": {
"BLUESKY_APP_KEY": "",
"BLUESKY_IDENTIFIER": ""
}
}
}
}
Make sure to replace BLUESKY_APP_KEY
and BLUESKY_IDENTIFIER
with your Bluesky API credentials.
MCP (Modular Context Processing) is a protocol for standardizing interactions between different AI or data processing tools, such as Claude and Bluesky.
Yes, but you may incur API costs when interacting with Bluesky’s services.
Yes, if you modify the configuration to point to another MCP client.
BLUESKY_APP_KEY
and BLUESKY_IDENTIFIER
for?These are credentials required to authenticate with Bluesky’s API. They can be obtained by registering an app in the Bluesky developer portal.
A simple MCP server that can enable MCP clients to query Bluesky instances.
To install Bluesky Context Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @laulauland/bluesky-context-server --client claude
// ~/Library/Application Support/Claude/config.json
{
"mcpServers": {
"bluesky": {
"command": "/Users/laurynas-fp/.bun/bin/bun",
"args": [
"/bluesky-context-server/index.ts" ], "env": { "BLUESKY_APP_KEY": "", "BLUESKY_IDENTIFIER": "" } } } } ```