Cross-platform social media MCP server
## Social Media Sync MCP Server: Content Synchronization The **Social Media Sync MCP Server** specializes in synchronizing content, followers, and engagement data across social media platforms directly within Google Antigravity. This integration ensures consistent presence and unified data across your social networks. ### Why Social Media Sync MCP? - **Profile Sync**: Keep profile information consistent across all platforms - **Content Mirroring**: Automatically mirror content across selected networks - **Follower Insights**: Unified view of audience across platforms - **Engagement Sync**: Aggregate and sync engagement data for unified reporting - **Cross-Platform Mentions**: Track mentions and conversations across networks ### Key Features #### 1. Profile Synchronization ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Sync my bio and profile picture across Twitter, LinkedIn, and Bluesky" }], tools=[{ "name": "social_sync_profile", "description": "Sync profiles" }] ) ``` #### 2. Content Mirroring ```python # Mirror content automatically response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Set up automatic mirroring of my Twitter posts to Bluesky and Mastodon" }], tools=[{"name": "social_sync_content", "description": "Mirror content"}] ) ``` #### 3. Audience Insights ```python # Unified audience view response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me my total reach across all platforms and identify overlapping followers" }], tools=[{"name": "social_sync_audience", "description": "Audience analytics"}] ) ``` #### 4. Engagement Aggregation ```python # Aggregate engagement data response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Aggregate all engagement on my cross-posted announcement from all platforms" }], tools=[{"name": "social_sync_engagement", "description": "Aggregate engagement"}] ) ``` ### Configuration ```json { "mcpServers": { "social-media-sync": { "command": "npx", "args": ["-y", "@anthropic/mcp-social-sync"], "env": { "SYNC_PLATFORMS": "twitter,linkedin,bluesky,mastodon", "SYNC_MODE": "bidirectional" } } } } ``` ### Use Cases **Brand Consistency**: Maintain consistent branding and messaging across all social channels. **Audience Migration**: Help followers find you across platforms during network changes. **Unified Reporting**: Generate comprehensive reports combining all platform data. **Content Backup**: Ensure content exists across multiple platforms for redundancy. The Social Media Sync MCP Server brings cross-platform synchronization directly into your development workflow, ensuring consistent social presence.
{
"mcpServers": {
"social-media-sync": {
"mcpServers": {
"social-media-sync": {
"args": [
"-y",
"social-media-sync-mcp"
],
"command": "npx"
}
}
}
}
}