bluesky-daily-mcp
An MCP Server to help you surface the most interesting topics from your Bluesky follows daily.
briangershon
README
bluesky-daily-mcp
An MCP Server to help you surface the most interesting topics from your Bluesky follows daily.
Features
- a tool to retrieve all posts from your follows for a given day
- sample prompts for analyzing posts
- caches the posts for a given day
Posts are retrieved via bsky-tldr npm package which normalizes them into this format for easy consumption by LLM:
[
{
"uri": "at://did:plc:kft6lu4trxowqmter2b6vg6z/app.bsky.feed.post/3lh4unyelgs2i",
"content": "There are some missing details in this report claiming to have leaked the system prompt - most notably they don't clarify if they got the system prompt for DeepSeek v3 or DeepSeek R1 (I'm interred in R1) lab.wallarm.com/jailbreaking...",
"createdAt": "2025-02-01T15:53:09.612Z",
"isRepost": false,
"links": ["https://lab.wallarm.com/jailbreaking-generative-ai/"]
}
]
<img src="https://github.com/briangershon/bluesky-daily-mcp/blob/main/screenshots/visual-summary-of-bluesky-posts.jpg?raw=true" width="600" height="600" alt="Visual Summary of Bluesky Posts" />
Limitations
- This retrieves all posts from your follows for a given day. This will become large and subsequently you'll lose posts that are truncated by the MCP Client or the LLM's context window. Will need additional strategies to handle this.
Installation
Install this MCP Server with your MCP Client, such as Claude Desktop.
Here are the steps:
š 1. Configure. For Claude Desktop, you can install this MCP Server by adding the following to your ~/Library/Application\ Support/Claude/claude_desktop_config.json (on MacOS):
Option A: Run from NPM package
NOTE: PATH pointing to the absolute path to the /bin folder where npx is running is only needed if you use NVM to manage your Node.js versions. Without that, you may see a mysterious "Header not set" error. Find path via which npx command.
{
"mcpServers": [
"bluesky-daily-mcp": {
"command": "npx",
"args": ["-y", "bluesky-daily-mcp"],
"env": {
"PATH": "/absolute/path/to/npx/bin:/usr/bin:/bin",
"BLUESKY_HANDLE": "",
"BLUESKY_APP_PASSWORD": "",
"TIMEZONE_OFFSET": "-8",
"REQUEST_TIMEOUT_MS": "120000"
}
}
]
}
Option B: Clone repo and run it from source
Build the MCP Server first in the cloned repo:
npm install
npm run build
NOTE: the /absolute/path is needed to node if you use NVM to manage your Node.js versions. Without that, you may see a mysterious "Header not set" error. Find path via which node command.
{
"mcpServers": [
"bluesky-daily-mcp": {
"command": "/absolute/path/to/node",
"args": ["/absolute/path/to/this/dist/index.js"],
"env": {
"BLUESKY_HANDLE": "",
"BLUESKY_APP_PASSWORD": "",
"TIMEZONE_OFFSET": "-8",
"REQUEST_TIMEOUT_MS": "120000"
}
}
]
}
What are these env variables?
BLUESKY_HANDLEis your Bluesky handle without the @ sign, e.g.your_handle.bsky.socialorcustomdomain.com.BLUESKY_APP_PASSWORDis a Bluesky app password, which you can generate from the Bluesky App Passwords Settings page.TIMEZONE_OFFSETis the timezone offset from UTC in hours. For example,-8for PST,+8for CST. This helps define what a "day" is for you, so it's not hard-coded to UTC.REQUEST_TIMEOUT_MSis the max timeout for the request that retrieves the posts to run. Without this, you have a default of ~60 seconds (60000 ms). Recommend setting this to 2 minutes (120000 ms).
š 2. Restart Claude Desktop to load up new MCP Server.
Try it out
- Fire up Claude Desktop and start a new conversation
- Type in "Retrieve Bluesky posts from yesterday" or "Retrieve Bluesky posts from April 2nd" (or whatever date you want)
<img src="https://github.com/briangershon/bluesky-daily-mcp/blob/main/screenshots/claude-desktop.png?raw=true" width="800" alt="Using MCP Server with Claude Desktop" />
Help for Contributors
Running locally for development
Setup your local .env file with:
BLUESKY_HANDLE=
BLUESKY_APP_PASSWORD=
TIMEZONE_OFFSET=
Debug with MCP Inspector:
npm install
npm run build && npx @modelcontextprotocol/inspector -e BLUESKY_HANDLE=XXX -e BLUESKY_APP_PASSWORD=XXX -e TIMEZONE_OFFSET=XXX node dist/index.js
```
Debug by viewing logs
```bash
tail -n 20 -F ~/Library/Logs/Claude/mcp-server-bluesky-daily-mcp.log
Run tests or coverage reports
npm test
npm run coverage
Manually retrieve posts
If you want to make sure the post retrieval code is running ok with your .env, run:
npm run retrieve-posts
Steps for publishing package to NPM
After merging latest code to main branch:
- Locally,
git checkout main && git pull npm version patch# or minor, or majorgit push --follow-tags- A GitHub release is automatically written and published
Recommended Servers
Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.
mixpanel
Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.
MCP PubMed Search
Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.
dbt Semantic Layer MCP Server
A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.
Crypto Price & Market Analysis MCP Server
A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.
Vectorize
Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.
Nefino MCP Server
Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.
MATLAB MCP Server
Integrates MATLAB with AI to execute code, generate scripts from natural language, and access MATLAB documentation seamlessly.
Macrostrat MCP Server
Enables Claude to query comprehensive geologic data from the Macrostrat API, including geologic units, columns, minerals, and timescales through natural language.
MCP Word Counter
A Model Context Protocol server that provides tools for analyzing text documents, including counting words and characters. This server helps LLMs perform text analysis tasks by exposing simple document statistics functionality.