Overview
MCP server-bluesky is a server designed to interact with the Bluesky social media platform, allowing users to manage their profiles and posts programmatically.
To use the mcp-server-bluesky, you need to set up the server with your Bluesky credentials and run the provided command using npx.
- Profile management (get, follow, delete follow) - Post management (create, delete, repost) - Timeline and likes management - Search functionality for posts
- Automating social media interactions on Bluesky.
- Managing followers and following lists programmatically.
- Posting and managing content without manual input.
Add to your AI client
Use these steps to connect mcp-server-bluesky in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"morinokami-mcp-server-bluesky-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-morinokami-mcp-server-bluesky-mcp-mirror"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"morinokami-mcp-server-bluesky-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-morinokami-mcp-server-bluesky-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"morinokami-mcp-server-bluesky-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-morinokami-mcp-server-bluesky-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"morinokami-mcp-server-bluesky-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-morinokami-mcp-server-bluesky-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"morinokami-mcp-server-bluesky-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-morinokami-mcp-server-bluesky-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"morinokami-mcp-server-bluesky-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-morinokami-mcp-server-bluesky-mcp-mirror"
]
}
}
}FAQ
What is required to run the mcp-server-bluesky?
You need a Bluesky account and the necessary credentials to authenticate.
Is there a graphical interface for this server?
No, it is a command-line tool designed for developers.
Can I use it for multiple Bluesky accounts?
Yes, you can set up multiple instances with different credentials.