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
Freshdesk
help-circle

Freshdesk MCP Server

Customer support software

supporthelpdesktickets

About

## Freshdesk MCP Server: Customer Support Platform The **Freshdesk MCP Server** integrates Freshdesk into Google Antigravity, enabling help desk operations with ticket management, automation, and multi-channel support directly from your development environment. ### Why Freshdesk MCP? - **Multi-Channel**: Email, phone, chat, social media in one place - **Automation**: Ticket routing and workflow automation - **Self-Service**: Knowledge base and community forums - **AI-Powered**: Freddy AI for ticket suggestions and responses - **Analytics**: Comprehensive reporting and CSAT tracking ### Key Features #### 1. Ticket Operations ```python # Get tickets tickets = await mcp.get_tickets( filter="new_and_my_open", order_by="created_at", order_type="desc", per_page=30 ) for ticket in tickets: print(f"Ticket #{ticket['id']}: {ticket['subject']}") # Get single ticket ticket = await mcp.get_ticket( ticket_id=12345, include="conversations,requester" ) ``` #### 2. Ticket Management ```python # Create ticket ticket = await mcp.create_ticket( subject="Cannot login to account", description="User reports login issues...", email="customer@example.com", priority=2, # Medium status=2, # Open type="Problem" ) # Update ticket await mcp.update_ticket( ticket_id=ticket["id"], status=3, # Pending agent_id=101 ) # Reply to ticket await mcp.create_reply( ticket_id=ticket["id"], body="We are looking into this issue..." ) ``` #### 3. Contact Management ```python # Get contacts contacts = await mcp.get_contacts(email="customer@example.com") # Create contact contact = await mcp.create_contact( name="John Customer", email="john@example.com", phone="555-0123", company_id=456 ) ``` #### 4. Knowledge Base ```python # Get articles articles = await mcp.get_articles( folder_id=123, status="published" ) # Create article article = await mcp.create_article( title="How to reset password", description="Step-by-step guide...", folder_id=123, status=2 # Published ) ``` ### Configuration ```json { "mcpServers": { "freshdesk": { "command": "npx", "args": ["-y", "@anthropic/mcp-freshdesk"], "env": { "FRESHDESK_DOMAIN": "yourcompany.freshdesk.com", "FRESHDESK_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Support Automation**: Automate ticket routing and responses. **Customer Analytics**: Track support metrics and CSAT scores. **Knowledge Management**: Manage and update help center articles. **Integration Hub**: Connect support with CRM and product tools. The Freshdesk MCP enables customer support within your development environment.

Installation

Configuration
{
  "mcpServers": {
    "freshdesk": {
      "mcpServers": {
        "freshdesk": {
          "env": {
            "FRESHDESK_DOMAIN": "yourcompany.freshdesk.com",
            "FRESHDESK_API_KEY": "your-api-key"
          },
          "args": [
            "-y",
            "freshdesk-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get API key from Freshdesk profile
  2. 2Configure domain
  3. 3Manage support tickets

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