This MCP server implementation allows you to integrate Bluesky social media platform functionality with applications that use the Model Context Protocol, such as Claude Desktop. It provides tools for accessing and interacting with your Bluesky account programmatically.
To use the Bluesky MCP server, you need to configure it with your Bluesky credentials. For Claude Desktop, add the server configuration to your Claude settings:
{
"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
parameter is optional and defaults to https://bsky.social
if not specified.
The MCP server provides several tools for interacting with Bluesky:
bluesky_get_profile
- Retrieve a user's profile informationbluesky_follow
- Follow a userbluesky_delete_follow
- Unfollow a userbluesky_get_follows
- Get a list of accounts a user followsbluesky_get_followers
- Get a list of a user's followersbluesky_search_posts
- Search for postsbluesky_post
- Create a new postbluesky_delete_post
- Delete one of your postsbluesky_repost
- Repost contentbluesky_delete_repost
- Remove a repostbluesky_get_timeline
- Retrieve your timelinebluesky_get_post_thread
- Get a post and its repliesbluesky_get_likes
- See who liked a postbluesky_like
- Like a postbluesky_delete_like
- Remove a like from a postAfter configuring the MCP server in Claude Desktop, you can access these tools through Claude's interface. Each tool has specific parameters and returns data in a structured format that Claude can interpret and use in conversations.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.