Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
Slack
💬

Slack MCP Server

Channel management and messaging within Slack workspaces

CommunicationMessagingTeams

About

## Slack MCP Server: Team Communication Hub The **Slack MCP Server** integrates Slack's team communication platform into Google Antigravity. This enables AI-assisted team collaboration, automated messaging, and workflow integration directly from your development environment. ### Why Slack MCP? Slack is essential for modern teams: - **Real-Time Messaging**: Instant team communication - **Channels**: Organize conversations by topic - **Integrations**: Connect 2000+ tools - **Workflows**: Automate repetitive tasks - **Searchable**: Find any message or file ### Key Features #### 1. Send Messages ```python from slack_sdk import WebClient client = WebClient(token="xoxb-your-token") # Send to channel response = client.chat_postMessage( channel="#engineering", text="Deployment completed successfully! :rocket:", blocks=[ {"type": "section", "text": {"type": "mrkdwn", "text": "*Deploy Status*"}} ] ) ``` #### 2. Channel Management ```python # Create channel channel = client.conversations_create( name="project-alpha", is_private=False ) # Invite users client.conversations_invite( channel=channel["channel"]["id"], users=["U123", "U456"] ) ``` #### 3. Workflow Automation ```python # Listen for events @app.event("message") def handle_message(event, say): if "deploy" in event["text"].lower(): say("Starting deployment process...") # Trigger deployment ``` ### Configuration ```json { "mcpServers": { "slack": { "command": "npx", "args": ["-y", "@anthropic/mcp-slack"], "env": { "SLACK_BOT_TOKEN": "xoxb-your-token", "SLACK_SIGNING_SECRET": "your-secret" } } } } ``` ### Use Cases **Deployment Notifications**: Alert team when deployments complete. **Incident Response**: Automate alerts and coordination. **Code Reviews**: Notify reviewers and track discussions. The Slack MCP Server brings team communication to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "slack": {
      "env": {
        "SLACK_TEAM_ID": "T01234567",
        "SLACK_BOT_TOKEN": "xoxb-your-bot-token"
      },
      "args": [
        "-y",
        "@modelcontextprotocol/server-slack"
      ],
      "command": "npx"
    }
  }
}

How to Use

  1. 1Create Slack app and get bot token (xoxb-)
  2. 2Find team ID in Slack workspace settings
  3. 3Optionally set SLACK_CHANNEL_IDS to limit access
  4. 4Restart Claude Desktop after configuration

Environment Variables

SLACK_TEAM_IDT01234567
SLACK_BOT_TOKENxoxb-your-bot-token

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers