Multi Chat

v1.0.0Communicationstable

Google Chat MCP server that lets AI assistants like Claude and Cursor participate directly in team conversations - search messages, help teammates, share files, and coordinate across chat platforms.

claude-aicommunicationcursor-aiextendable-frameworkgoogle-chat
Share:
23
Stars
0
Downloads
0
Weekly
0/5

What is Multi Chat?

Multi Chat is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to google chat mcp server that lets ai assistants like claude and cursor participate directly in team conversations - search messages, help teammates, share files, and coordinate across chat platforms.

Google Chat MCP server that lets AI assistants like Claude and Cursor participate directly in team conversations - search messages, help teammates, share files, and coordinate across chat platforms.

This server falls under the Communication category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Google Chat MCP server that lets AI assistants like Claude a

Use Cases

Google Chat integration
Team conversation participation
Message search and collaboration
siva010928

Maintainer

LicenseMIT
Languagepython
Versionv1.0.0
UpdatedMay 17, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx multi-chat

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Multi Chat

Multi-Chat MCP Server connects AI assistants like Claude and Cursor directly to Google Chat, enabling them to search messages, send replies, manage spaces, and participate in team conversations in real time. It uses OAuth 2.0 to authenticate with your Google Workspace account and surfaces a rich set of space management, messaging, and file-sharing capabilities as MCP tools. Teams use it to let AI summarize channel activity, search historical discussions, and help coordinate across multiple chat threads — all from within their AI coding assistant.

Prerequisites

  • Python 3.9+ with uv or pip installed
  • A Google Workspace account with Google Chat API enabled
  • Google OAuth 2.0 credentials (credentials.json) downloaded from Google Cloud Console
  • An MCP-compatible client such as Claude Desktop or Cursor
1

Clone the repository and install dependencies

Clone the multi-chat-mcp-server repository and create a virtual environment using uv, then install all Python requirements.

git clone https://github.com/siva010928/multi-chat-mcp-server.git
cd multi-chat-mcp-server
uv venv .venv
source .venv/bin/activate
uv pip install -r requirements.txt
2

Configure Google Cloud credentials

Download OAuth 2.0 credentials from the Google Cloud Console for the Chat API. Place the credentials.json file in the project root, then update provider-config.yaml to point to it.

# provider-config.yaml
providers:
  google_chat:
    name: "Google Chat"
    token_path: ".token"
    credentials_path: "credentials.json"
    callback_url: "http://localhost:8080"
3

Authenticate with Google Chat

Run the local auth flow to grant the server access to your Google Workspace account. This opens a browser window for the OAuth consent screen and stores an access token.

python -m src.server --provider google_chat --local-auth
4

Configure your MCP client

Add the server entry to your Claude Desktop or Cursor MCP configuration file, pointing to your local clone directory.

{
  "mcpServers": {
    "google_chat_mcp": {
      "command": "uv",
      "args": [
        "--directory", "/path/to/multi-chat-mcp-server",
        "run", "-m", "src.server",
        "--provider", "google_chat"
      ]
    }
  }
}
5

Restart your MCP client and verify

Restart Claude Desktop or reload the Cursor window. The server should appear connected and you can test it by asking Claude to list your Google Chat spaces.

Multi Chat Examples

Client configuration

Full Claude Desktop config for Multi-Chat with Google Chat provider.

{
  "mcpServers": {
    "google_chat_mcp": {
      "command": "uv",
      "args": [
        "--directory", "/Users/yourname/multi-chat-mcp-server",
        "run", "-m", "src.server",
        "--provider", "google_chat"
      ]
    }
  }
}

Prompts to try

Example prompts that demonstrate Multi-Chat's Google Chat capabilities.

- "List all Google Chat spaces I'm a member of"
- "Search our chat history for discussions about the authentication issue from last week"
- "Summarize today's team activity in the #engineering space"
- "Send a message to the DevOps space: deployment to staging is complete"
- "Find all messages where I was mentioned in the last 7 days"

Troubleshooting Multi Chat

OAuth error: redirect_uri_mismatch during local auth

In the Google Cloud Console, add http://localhost:8080 as an authorized redirect URI for your OAuth 2.0 client ID. Ensure the callback_url in provider-config.yaml matches exactly.

Server starts but Claude cannot list spaces

Verify that the Google Chat API is enabled in your Google Cloud project under APIs & Services. Also confirm the token file was created at the path specified by token_path after running --local-auth.

uv command not found

Install uv with: curl -Ls https://astral.sh/uv/install.sh | sh — or use pip install uv. After installation, open a new terminal session so the PATH is updated.

Frequently Asked Questions about Multi Chat

What is Multi Chat?

Multi Chat is a Model Context Protocol (MCP) server that google chat mcp server that lets ai assistants like claude and cursor participate directly in team conversations - search messages, help teammates, share files, and coordinate across chat platforms. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Multi Chat?

Follow the installation instructions on the Multi Chat GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Multi Chat?

Multi Chat works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Multi Chat free to use?

Yes, Multi Chat is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Communication MCP Servers

Explore all communication servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "multi-chat": { "command": "npx", "args": ["-y", "multi-chat"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Multi Chat?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides