mcp-server-bluesky

by morinokami

10 stars
158 downloads
Not rated
GitHub

About

mcp-server-bluesky is an MCP server that integrates with the Bluesky social network. It enables users to interact with Bluesky through natural language via tools for managing profiles, posts, follows, likes, and more.

Details

Author
morinokami
GitHub stars
10
Downloads
158
Categories
Other

- Manage user profiles and view followers/follows
- Create, delete, and search posts
- Follow and unfollow other users
- Interact with posts (like, repost, delete actions)
- View timeline and post threads

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name mcp-server-bluesky
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Configure the server in your MCP client (e.g., Claude Desktop) using npx with environment variables BLUESKY_USERNAME and BLUESKY_PASSWORD. Optionally set BLUESKY_PDS_URL (defaults to https://bsky.social). Once configured, invoke any of the provided tools.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp-server-bluesky": {
            "bluesky": {
                "command": "npx",
                "args": [
                    "-y",
                    "mcp-server-bluesky"
                ],
                "env": {
                    "BLUESKY_USERNAME": "username",
                    "BLUESKY_PASSWORD": "password",
                    "BLUESKY_PDS_URL": "https://bsky.social"
                }
            }
        }
    }
}

McpServers

{
    "bluesky": {
        "command": "npx",
        "args": [
            "-y",
            "mcp-server-bluesky"
        ],
        "env": {
            "BLUESKY_USERNAME": "username",
            "BLUESKY_PASSWORD": "password",
            "BLUESKY_PDS_URL": "https://bsky.social"
        }
    }
}

mcp-server-bluesky

MCP server for Bluesky.

Usage with Claude Desktop

{
  "mcpServers": {
    "bluesky": {
      "command": "npx",
      "args": ["-y", "mcp-server-bluesky"],
      "env": {
        "BLUESKY_USERNAME": "username",
        "BLUESKY_PASSWORD": "password",
        "BLUESKY_PDS_URL": "https://bsky.social"
      }
    }
  }
}

The BLUESKY_PDS_URL is optional and defaults to https://bsky.social if not specified.

Tools

- bluesky_get_profile
- bluesky_follow
- bluesky_delete_follow
- bluesky_get_follows
- bluesky_get_followers
- bluesky_search_posts
- bluesky_post
- bluesky_delete_post
- bluesky_repost
- bluesky_delete_repost
- bluesky_get_timeline
- bluesky_get_post_thread
- bluesky_get_likes
- bluesky_like
- bluesky_delete_like

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.