An open API service indexing awesome lists of open source software.

https://github.com/laulauland/bluesky-context-server

Bluesky MCP server
https://github.com/laulauland/bluesky-context-server

Last synced: 2 months ago
JSON representation

Bluesky MCP server

Awesome Lists containing this project

README

        

# Bluesky Context Server
[![smithery badge](https://smithery.ai/badge/bluesky-context-server)](https://smithery.ai/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](https://smithery.ai/server/@laulauland/bluesky-context-server):

```bash
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.

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