Bluesky Social MCP
Provides comprehensive tools for interacting with the Bluesky social network, including authentication, profile operations (following/unfollowing, muting/unmuting users), timeline and feed management, post interactions (liking, reposting), and content creation/management (sending text posts, images, videos, and deleting content).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bluesky Social MCPshow me my home timeline"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bluesky Social MCP
An MCP server for interacting with the Bluesky social network via the atproto client.
:wave: Leave an issue if you have any problems running this MCP. I should be able to push out fixes pretty quickly.
Quick Start
Get your Bluesky app password at: https://bsky.app/settings/app-passwords
Add the following to your MCP config file (Note that the version is pinned):
{
"mcpServers": {
"bluesky-social": {
"command": "uvx",
"args": ["--from", "git+https://github.com/gwbischof/bluesky-social-mcp@v0.1", "bluesky-social-mcp"],
"env": {
"BLUESKY_IDENTIFIER": "your-handle.bsky.social",
"BLUESKY_APP_PASSWORD": "your-app-password"
}
}
}
}For security reasons, I think its best to keep it pinned and manually change your config to update the version.
Related MCP server: X (Twitter) MCP server
Tool Status
All tools have been implemented and tested ✅
Authentication & Setup
✅
check_auth_status- Check if the current session is authenticated
Profile Operations
✅
get_profile- Get a user profile (Client method:get_profile)✅
get_follows- Get users followed by an account (Client method:get_follows)✅
get_followers- Get users who follow an account (Client method:get_followers)✅
follow_user- Follow a user (Client method:follow)✅
unfollow_user- Unfollow a user (Client method:unfollow)✅
mute_user- Mute a user (Client method:mute)✅
unmute_user- Unmute a user (Client method:unmute)✅
resolve_handle- Resolve a handle to DID (Client method:resolve_handle)
Feed Operations
✅
get_timeline- Get posts from your home timeline (Client method:get_timeline)✅
get_author_feed- Get posts from a specific user (Client method:get_author_feed)✅
get_post_thread- Get a full conversation thread (Client method:get_post_thread)
Post Interactions
✅
like_post- Like a post (Client method:like)✅
unlike_post- Unlike a post (Client method:unlike)✅
get_likes- Get likes for a post (Client method:get_likes)✅
repost- Repost a post (Client method:repost)✅
unrepost- Remove a repost (Client method:unrepost)✅
get_reposted_by- Get users who reposted (Client method:get_reposted_by)
Post Creation & Management
✅
send_post- Create a new text post (Client method:send_post)✅
send_image- Send a post with a single image (Client method:send_image)✅
send_images- Send a post with multiple images (Client method:send_images)✅
send_video- Send a post with a video (Client method:send_video)✅
delete_post- Delete a post (Client method:delete_post)✅
get_post- Get a specific post (Client method:get_post)✅
get_posts- Get multiple posts (Client method:get_posts)
Run from local clone of repo.
{
"mcpServers": {
"bluesky-social": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/bluesky-social-mcp",
"run",
"server.py"
]
"env": {
"BLUESKY_IDENTIFIER": "user-name.bsky.social",
"BLUESKY_APP_PASSWORD": "app-password-here"
}
}
}
}Dev Setup
Install dependencies:
uv syncRun the server:
uv run bluesky-social-mcp
Debug with MCP Inspector
mcp dev server.py
mcp dev server.py --with-editable .Run the tests
I run the tests against the actual Bluesky server.
The tests will use BLUESKY_IDENTIFIER, and BLUESKY_APP_PASSWORD env vars.
uv run pytestMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceA simple MCP server that can enable MCP clients to query Bluesky instances.33MIT
- MIT
- Alicense-qualityDmaintenanceMCP server for Bluesky/AT Protocol enabling LLM clients and agents to authenticate, search, post, like, follow, and manage chat on Bluesky.121MIT
- Alicense-qualityDmaintenanceMCP server for Bluesky/AT Protocol that enables AI agents to search, post, reply, like, and follow.91MIT
Related MCP Connectors
Mastodon MCP — public Mastodon data via mastodon.social (no auth required)
Lemmy MCP — public reads on any Lemmy instance.
Lobsters MCP — stories and discussions from lobste.rs
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gwbischof/bluesky-social-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server