https://github.com/morinokami/mcp-server-bluesky
MCP server for interacting with Bluesky
https://github.com/morinokami/mcp-server-bluesky
Last synced: 4 months ago
JSON representation
MCP server for interacting with Bluesky
- Host: GitHub
- URL: https://github.com/morinokami/mcp-server-bluesky
- Owner: morinokami
- License: mit
- Created: 2024-12-11T11:10:37.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-08T14:01:14.000Z (6 months ago)
- Last Synced: 2025-06-10T16:51:55.032Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 195 KB
- Stars: 11
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# mcp-server-bluesky
MCP server for [Bluesky](https://bsky.app/).
## Usage with Claude Desktop
```json
{
"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`