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
Microsoft Teams MCP Server
message-square

Microsoft Teams MCP Server MCP Server

Teams integration via Microsoft Graph

teamsmicrosoftcollaborationmessaging

About

## Microsoft Teams MCP Server: Enterprise Collaboration The **Microsoft Teams MCP Server** integrates Microsoft Teams into Google Antigravity. This enables posting messages, managing channels, and automating workflows in the enterprise collaboration platform used by millions of organizations. ### Why Teams MCP? Teams powers enterprise communication: - **Enterprise Standard**: 300M+ monthly users - **Office Integration**: Seamless Microsoft 365 - **Channels**: Organized team conversations - **Apps**: Rich extensibility platform - **Security**: Enterprise-grade compliance ### Key Features #### 1. Send Messages ```python import requests headers = {"Authorization": f"Bearer {access_token}"} # Post to channel message = requests.post( f"https://graph.microsoft.com/v1.0/teams/{team_id}/channels/{channel_id}/messages", headers=headers, json={ "body": { "contentType": "html", "content": "<h1>Build Completed</h1><p>All tests passed ✅</p>" } } ) ``` #### 2. Adaptive Cards ```python card = { "type": "AdaptiveCard", "body": [ {"type": "TextBlock", "text": "Deployment Status", "weight": "bolder"}, {"type": "FactSet", "facts": [ {"title": "Environment", "value": "Production"}, {"title": "Status", "value": "Success"}, {"title": "Version", "value": "2.1.0"} ]} ], "actions": [ {"type": "Action.OpenUrl", "title": "View Logs", "url": "https://logs.example.com"} ] } requests.post(webhook_url, json={"attachments": [{"content": card}]}) ``` #### 3. Team Management ```python # Create channel channel = requests.post( f"https://graph.microsoft.com/v1.0/teams/{team_id}/channels", headers=headers, json={ "displayName": "Project Alpha", "description": "Channel for Project Alpha discussions" } ) # Add members requests.post( f"https://graph.microsoft.com/v1.0/teams/{team_id}/members", headers=headers, json={"@odata.type": "#microsoft.graph.aadUserConversationMember", "user@odata.bind": user_id} ) ``` ### Configuration ```json { "mcpServers": { "teams": { "command": "npx", "args": ["-y", "@anthropic/mcp-teams"], "env": { "TEAMS_TENANT_ID": "your-tenant-id", "TEAMS_CLIENT_ID": "your-client-id", "TEAMS_CLIENT_SECRET": "your-secret" } } } } ``` ### Use Cases **Build Notifications**: Post CI/CD results to team channels. **Incident Response**: Automate incident alerting and coordination. **Approvals**: Build approval workflows with interactive cards. The Microsoft Teams MCP Server brings enterprise collaboration to Antigravity.

Installation

Configuration
{
  "mcpServers": {
    "teams": {
      "mcpServers": {
        "teams": {
          "args": [
            "-y",
            "@floriscornel/teams-mcp@latest"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1List teams and channels
  2. 2Send messages
  3. 3Microsoft Graph APIs

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