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
- Host: GitHub
- URL: https://github.com/laulauland/bluesky-context-server
- Owner: laulauland
- License: mit
- Created: 2024-11-29T22:30:53.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-04-01T13:03:21.000Z (3 months ago)
- Last Synced: 2025-04-01T13:37:23.292Z (3 months ago)
- Language: TypeScript
- Size: 12.7 KB
- Stars: 17
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - Bluesky Context Server - Enables querying of Bluesky instances through an MCP protocol, facilitating data interaction and retrieval. (Social Media)
README
# 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": ""
}
}
}
}
```