Overview

This guide walks you through connecting Google Gemini to Microsoft Teams using OpenClaw. You'll learn how to configure authentication, set up the channel, and deploy your AI assistant.

Google Gemini Features

  • 1M token context window
  • Multimodal understanding
  • Fast inference
  • Competitive pricing

Microsoft Teams Capabilities

  • Direct messages
  • Group chats
  • Media support
  • Reactions
  • Thread support
  • Native commands

Step 1: Configure Google Gemini

Google AI API key

  1. Go to ai.google.dev
  2. Create or select a project
  3. Enable the Gemini API
  4. Generate an API key
  5. Set GOOGLE_API_KEY environment variable

Environment variable: GOOGLE_API_KEY

Step 2: Configure Microsoft Teams

  1. Register an app in Azure Portal
  2. Create a Bot Channel Registration
  3. Configure Teams channel in Azure
  4. Set app credentials in openclaw.json
  5. Deploy and add bot to Teams

Step 3: Combined Configuration

Add both configurations to your openclaw.json:

{
  "agents": {
    "defaults": {
      "model": {
        "primary": "google-gemini/gemini-2.0-flash-exp"
      }
    }
  },
  "models": {
    "providers": {
      "google-gemini": {
  "models": {
    "providers": {
      "google-gemini": {
        "apiKey": "${GOOGLE_API_KEY}
    }
  },
  "channels": {
    "msteams": {
      "appId": "${MSTEAMS_APP_ID}",
      "appPassword": "${MSTEAMS_APP_PASSWORD}"
    }
  }
}
}

Step 4: Start the Gateway

# Start the gateway
openclaw gateway start

# Check status
openclaw status

# View logs
openclaw logs --follow

Access Control

Microsoft Teams supports the following access control policies:

DM Policies

Policy Description
allowlist Only senders in allowFrom list are processed
open All DMs are processed (requires allowFrom: ["*"])

Group Policies

Policy Description
allowlist Only groups in groupAllowFrom are processed
open All groups are processed

Deploy Options

Choose how to deploy your Google Gemini + Microsoft Teams setup:

Frequently Asked Questions

How do I set up Google Gemini with Microsoft Teams?
Configure Google Gemini as your AI provider and enable Microsoft Teams as a channel in openclaw.json. The gateway routes Microsoft Teams messages to Google Gemini for processing automatically.
Is Google Gemini a good choice for Microsoft Teams bots?
Google Gemini works great with Microsoft Teams. Extremely large context window and Very cost-effective make it well-suited for Enterprise AI assistant and Corporate automation.