ATProtocol social network
## Bluesky MCP Server: Decentralized Social Integration The **Bluesky MCP Server** integrates the decentralized social network built on the AT Protocol directly into Google Antigravity, enabling AI assistants to post content, manage follows, and interact with the Bluesky network programmatically. This integration brings open social networking to your development workflow. ### Why Bluesky MCP? - **Decentralized Protocol**: Built on the open AT Protocol for data portability and interoperability - **Algorithm Choice**: Users control their feed algorithms for transparent content curation - **Developer Friendly**: Open APIs and protocols designed for third-party development - **Growing Network**: Rapidly expanding user base of tech-savvy early adopters - **Custom Feeds**: Create and publish custom algorithmic feeds for the community ### Key Features #### 1. Post Creation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Post to Bluesky: Just shipped a new feature! Check out our latest update." }], tools=[{ "name": "bluesky_post", "description": "Create Bluesky posts" }] ) ``` #### 2. Feed Retrieval ```python # Get timeline feed response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get my Bluesky timeline and summarize recent tech discussions" }], tools=[{"name": "bluesky_feed", "description": "Get feed content"}] ) ``` #### 3. Profile Management ```python # Manage follows response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find and follow developers posting about Rust and WebAssembly" }], tools=[{"name": "bluesky_follows", "description": "Manage follows"}] ) ``` #### 4. Notifications ```python # Check notifications response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Check my Bluesky notifications and show me mentions and replies" }], tools=[{"name": "bluesky_notifications", "description": "Get notifications"}] ) ``` ### Configuration ```json { "mcpServers": { "bluesky": { "command": "npx", "args": ["-y", "@anthropic/mcp-bluesky"], "env": { "BLUESKY_HANDLE": "your-handle.bsky.social", "BLUESKY_APP_PASSWORD": "your-app-password" } } } } ``` ### Use Cases **Content Publishing**: Automate posting updates, announcements, and content to Bluesky. **Community Engagement**: Monitor and respond to mentions and discussions. **Feed Curation**: Build custom feeds and content aggregation from Bluesky posts. **Social Analytics**: Track engagement and growth on the decentralized network. The Bluesky MCP Server brings decentralized social networking directly into your development workflow, enabling open social media automation.
{
"mcpServers": {
"bluesky": {
"mcpServers": {
"bluesky": {
"env": {
"BLUESKY_HANDLE": "your.handle",
"BLUESKY_APP_PASSWORD": "YOUR_APP_PASSWORD"
},
"args": [
"-y",
"mcp-server-bluesky"
],
"command": "npx"
}
}
}
}
}