Skip to main content
Glama

Zendesk MCP Server

Zendesk 티켓 데이터를 활용하여 AI Agent가 고객 지원 관련 인사이트를 제공할 수 있도록 하는 MCP(Model Context Protocol) 서버입니다.

🚀 주요 기능

도구

설명

search_tickets

통합 티켓 검색 (키워드, 태그, 고객사, 자유검색) + 고객사별 그룹핑

get_ticket_details

특정 티켓의 상세 정보 조회

get_top_agents

기간 내 가장 많은 티켓을 해결한 담당자 조회

get_service_trends

서비스별 문의 빈도 분석

📋 사전 요구사항

  • Docker

  • Zendesk 계정 및 API 토큰

⚡ 빠른 시작

Docker 실행

docker run -d \
  --name zendesk-mcp \
  -p 8000:8000 \
  -e ZENDESK_SUBDOMAIN=your-subdomain \
  -e ZENDESK_EMAIL=your-email@example.com \
  -e ZENDESK_API_TOKEN=your-api-token \
  public.ecr.aws/saltware/zendesk-mcp:latest

환경변수

변수

설명

필수

ZENDESK_SUBDOMAIN

Zendesk 서브도메인

ZENDESK_EMAIL

API 사용자 이메일

ZENDESK_API_TOKEN

API 토큰

MCP_TRANSPORT

전송 방식 (http/stdio)

-

MCP_HOST

서버 호스트 (기본값: 0.0.0.0)

-

MCP_PORT

서버 포트 (기본값: 8000)

-

🔌 클라이언트 연결

Claude Desktop / Cursor

mcp.json 또는 mcp_settings.json에 추가:

{
  "mcpServers": {
    "zendesk": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "ZENDESK_SUBDOMAIN=your-subdomain",
        "-e", "ZENDESK_EMAIL=your-email@example.com",
        "-e", "ZENDESK_API_TOKEN=your-api-token",
        "public.ecr.aws/saltware/zendesk-mcp:latest"
      ]
    }
  }
}

HTTP 모드 연결

서버를 HTTP 모드로 실행 후:

{
  "mcpServers": {
    "zendesk": {
      "url": "http://localhost:8000/mcp"
    }
  }
}

💬 사용 예시

AI Agent에게 다음과 같이 질문할 수 있습니다:

  • "최근 90일간 모니터링 관련 문의가 많은 고객사를 찾아줘"

  • "Datadog, Prometheus, 관제 키워드로 관심 고객사를 검색해줘"

  • "이번 달 티켓 해결 실적이 가장 좋은 담당자는 누구야?"

  • "최근 서비스별 문의 트렌드를 분석해줘"

📖 도구 상세

search_tickets

티켓을 검색하고 고객사별로 그룹핑하여 반환합니다. 각 티켓에는 Zendesk 링크가 포함됩니다.

파라미터:

파라미터

설명

기본값

keywords

키워드 목록 - OR 조건 검색 (예: ['Datadog', 'APM'])

-

tags

태그 필터 (예: ['monitoring'])

-

company

고객사명 필터 - Zendesk 커스텀 필드 기반 (예: '이지샵')

-

status

티켓 상태 필터 (open, pending, hold, solved, closed)

-

period_days

검색 기간 (일)

90

limit

최대 티켓 수

500

💡 keywords, tags, company 중 하나 이상 필수

반환값 예시:

{
  "search_params": "keywords=['Datadog']",
  "total_tickets": 306,
  "period": "2025-01-15 ~ 2026-01-15",
  "companies": [
    {
      "name": "이지샵",
      "ticket_count": 16,
      "tickets": [
        {
          "id": 107275,
          "subject": "CloudWatch Agent 문의",
          "status": "closed",
          "url": "https://saltware.zendesk.com/agent/tickets/107275"
        }
      ]
    }
  ]
}

get_ticket_details

특정 티켓의 상세 정보를 조회합니다.

파라미터:

파라미터

설명

필수

ticket_id

Zendesk 티켓 ID

반환값:

  • id, subject, description, status, priority

  • created_at, updated_at

  • assignee_name, requester_name, company_name

  • tags: 태그 목록

  • url: Zendesk 티켓 링크

get_top_agents

기간 내 가장 많은 티켓을 해결한 담당자를 조회합니다.

파라미터:

파라미터

설명

기본값

period_days

검색 기간 (일)

30

limit

반환할 담당자 수

10

반환값:

  • period: 검색 기간 문자열

  • agents: 담당자 목록 (name, email, solved_count)

서비스별 문의 빈도를 분석합니다. 사전 정의된 서비스 태그(monitoring, aws, datadog 등)를 기준으로 집계합니다.

파라미터:

파라미터

설명

기본값

period_days

검색 기간 (일)

90

limit

반환할 서비스 수

10

반환값:

  • period: 검색 기간 문자열

  • total_tickets: 총 티켓 수

  • services: 서비스별 티켓 수 (category, ticket_count)

📚 추가 문서

📄 라이선스

MIT License

-
security - not tested
F
license - not found
-
quality - not tested

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/fitcloud/zendesk-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server