bluesky-context-server
by: laulauland
Bluesky MCP server
📌Overview
Purpose: To enable MCP clients to efficiently query Bluesky instances through a simplified server solution.
Overview: The Bluesky Context Server is designed as a lightweight server that facilitates seamless interaction between MCP clients and Bluesky instances. It enables users to perform queries easily, streamlining data retrieval and enhancing user experience with the Bluesky platform.
Key Features:
-
Easy Installation: Provides a straightforward installation via the Smithery CLI, allowing users to set up the server quickly and efficiently.
-
Custom Configuration: Allows manual configuration for compatibility with the Claude Desktop app, ensuring flexibility and adaptability to different user environments.
Bluesky Context Server
A simple MCP server that enables MCP clients to query Bluesky instances.
Usage
Installation
Installing via Smithery
To automatically install the Bluesky Context Server for Claude Desktop via Smithery:
npx -y @smithery/cli install @laulauland/bluesky-context-server --client claude
Manual Installation
- Place the code in a directory on your computer.
- Configure your Claude Desktop app to use the MCP server by updating the
config.json
file:
// ~/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": ""
}
}
}
}