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
Copper CRM
users

Copper CRM MCP Server

Google Workspace CRM

crmgooglerelationships

About

## Copper CRM MCP Server: Google Workspace CRM The **Copper CRM MCP Server** integrates Copper into Google Antigravity, enabling CRM operations tightly integrated with Google Workspace including Gmail, Calendar, and Drive directly from your development environment. ### Why Copper CRM MCP? - **Google Native**: Built specifically for Google Workspace users - **Automatic Sync**: Gmail and Calendar activities sync automatically - **Relationship Intelligence**: AI-powered contact enrichment - **Pipeline Management**: Visual deal pipelines with forecasting - **No Data Entry**: Automatic contact and activity logging ### Key Features #### 1. People Operations ```python # Get people (contacts) people = await mcp.get_people( page_size=25, sort_by="name", sort_direction="asc" ) for person in people: print(f"Contact: {person['name']} - {person['emails'][0]['email']}") # Search people results = await mcp.search_people( name="John", company_name="Acme" ) ``` #### 2. Contact Management ```python # Create person person = await mcp.create_person( name="Jane Smith", emails=[{"email": "jane@acme.com", "category": "work"}], phone_numbers=[{"number": "555-0123", "category": "work"}], company_id=123 ) # Update person await mcp.update_person( person_id=person["id"], custom_fields=[ {"custom_field_definition_id": 1, "value": "Enterprise"} ] ) ``` #### 3. Opportunity Management ```python # Get opportunities opportunities = await mcp.get_opportunities( pipeline_id=1, status="Open" ) for opp in opportunities: print(f"Opportunity: {opp['name']} - ${opp['monetary_value']}") # Create opportunity opp = await mcp.create_opportunity( name="Enterprise Deal", primary_contact_id=person["id"], pipeline_id=1, pipeline_stage_id=1, monetary_value=100000, close_date="2024-03-15" ) # Move through pipeline await mcp.update_opportunity( opportunity_id=opp["id"], pipeline_stage_id=2 ) ``` #### 4. Activity Tracking ```python # Log activity await mcp.create_activity( activity_type_id=1, # Call, Meeting, etc. details="Discussed contract terms", parent={"type": "opportunity", "id": opp["id"]} ) # Get activities activities = await mcp.get_activities( parent_type="opportunity", parent_id=opp["id"] ) ``` ### Configuration ```json { "mcpServers": { "copper": { "command": "npx", "args": ["-y", "@anthropic/mcp-copper"], "env": { "COPPER_API_KEY": "your-api-key", "COPPER_EMAIL": "your-email@company.com" } } } } ``` ### Use Cases **Google Workspace Teams**: CRM for teams already using Google Workspace. **Relationship Tracking**: Automatically log email and calendar interactions. **Sales Pipeline**: Manage deals with visual pipeline stages. **Contact Enrichment**: Enrich contacts with company and social data. The Copper CRM MCP enables Google-native CRM within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "copper": {
      "mcpServers": {
        "copper": {
          "env": {
            "COPPER_EMAIL": "user@example.com",
            "COPPER_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "copper-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get API key from Copper settings
  2. 2Configure email and key
  3. 3Sync with Google Workspace

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