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
Intercom MCP Server
message-circle

Intercom MCP Server MCP Server

Customer messaging platform

intercomcustomer-supportmessagingcrm

About

## Intercom MCP Server: Customer Messaging Platform The **Intercom MCP Server** integrates Intercom into Google Antigravity, enabling customer communication with live chat, product tours, and targeted messaging directly from your development environment. ### Why Intercom MCP? - **Unified Inbox**: All customer conversations in one place - **Messenger**: Customizable in-app messaging widget - **Product Tours**: Guide users with interactive tours - **Resolution Bot**: AI-powered automated support - **Customer Data**: Rich user profiles and segmentation ### Key Features #### 1. Conversation Operations ```python # Get conversations conversations = await mcp.get_conversations( state="open", per_page=20 ) for conv in conversations["conversations"]: print(f"Conversation: {conv['id']} - {conv['source']['type']}") # Get single conversation conv = await mcp.get_conversation( conversation_id="conv_123", display_as="plaintext" ) ``` #### 2. Conversation Management ```python # Reply to conversation await mcp.reply_conversation( conversation_id="conv_123", message_type="comment", body="Thanks for reaching out! Here is how we can help..." ) # Close conversation await mcp.update_conversation( conversation_id="conv_123", status="closed" ) # Assign to teammate await mcp.assign_conversation( conversation_id="conv_123", admin_id="admin_456", assignee_type="admin" ) ``` #### 3. Contact Management ```python # Get contacts contacts = await mcp.search_contacts( query="email:customer@example.com" ) # Create contact contact = await mcp.create_contact( role="user", email="newuser@example.com", name="New User", custom_attributes={ "plan": "pro", "signup_date": "2024-01-15" } ) # Update contact await mcp.update_contact( contact_id=contact["id"], custom_attributes={"plan": "enterprise"} ) ``` #### 4. Message Operations ```python # Send in-app message await mcp.create_message( message_type="inapp", body="Check out our new feature!", from_admin_id="admin_123", to_user_id="user_456" ) # Send targeted message await mcp.send_message( template="feature_announcement", user_ids=["user_1", "user_2", "user_3"] ) ``` ### Configuration ```json { "mcpServers": { "intercom": { "command": "npx", "args": ["-y", "@anthropic/mcp-intercom"], "env": { "INTERCOM_ACCESS_TOKEN": "your-access-token" } } } } ``` ### Use Cases **Customer Support**: Manage support conversations at scale. **User Engagement**: Send targeted messages based on user behavior. **Onboarding**: Create automated onboarding sequences. **Customer Insights**: Analyze user segments and behavior. The Intercom MCP enables customer messaging within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "intercom": {
      "mcpServers": {
        "intercom": {
          "env": {
            "INTERCOM_ACCESS_TOKEN": "YOUR_TOKEN"
          },
          "args": [
            "-y",
            "intercom-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Customer messaging
  2. 2Help articles
  3. 3Conversation management

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