MCP server GitHub 19
🐦 Bluesky
Interact with Bluesky social network through AT Protocol
Bluesky MCP server overview
This MCP Server Hub listing collects the source repository, setup notes, feature summary, and README details for Bluesky. Use it to decide whether this MCP server fits your AI assistant workflow before installing it locally or connecting it to a compatible client.
Listing type
MCP server
Directory
MCP Server HubSource
GitHub repositoryMCP basics
What is an MCP server?Bluesky Context Server
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
- Place the code somewhere on your computer.
- 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": ""
}
}
}
}