Skip to main content
Glama

MCP Server for Ticketmaster Events

Ticketmaster용 MCP 서버

Ticketmaster Discovery API를 통해 이벤트, 장소 및 명소를 검색하는 도구를 제공하는 모델 컨텍스트 프로토콜 서버입니다.

특징

  • 유연한 필터링을 통해 이벤트, 장소 및 명소를 검색하세요.
    • 키워드 검색
    • 이벤트 날짜 범위
    • 위치(도시, 주, 국가)
    • 장소별 검색
    • 명소별 검색
    • 이벤트 분류/카테고리
  • 출력 형식:
    • 프로그래밍 방식으로 사용할 수 있는 구조화된 JSON 데이터
    • 직접 소비할 수 있는 사람이 읽을 수 있는 텍스트
  • 다음을 포함한 포괄적인 데이터:
    • 이름과 ID
    • 날짜 및 시간(이벤트용)
    • 가격 범위(이벤트용)
    • URL
    • 이미지
    • 위치 및 주소(장소별)
    • 분류(명소별)

설치

지엑스피1

구성

서버에는 Ticketmaster API 키가 필요합니다. 다음 방법으로 키를 얻을 수 있습니다.

  1. https://developer.ticketmaster.com/ 으로 이동합니다
  2. 계정 생성 또는 로그인
  3. 계정의 "내 앱"으로 이동
  4. API 키를 얻기 위한 새로운 앱 만들기

MCP 설정 파일에서 API 키를 설정하세요.

{ "mcpServers": { "ticketmaster": { "command": "npx", "args": ["-y", "@delorenj/mcp-server-ticketmaster"], "env": { "TICKETMASTER_API_KEY": "your-api-key-here" } } } }

용법

서버는 다음을 허용하는 search_ticketmaster 라는 도구를 제공합니다.

필수 매개변수

  • type : 검색 유형('이벤트', '장소', '명소')

선택적 매개변수

  • keyword : 검색어
  • startDate : YYYY-MM-DD 형식의 시작 날짜(이벤트의 경우)
  • endDate : YYYY-MM-DD 형식의 종료 날짜(이벤트의 경우)
  • city : 도시 이름
  • stateCode : 주 코드(예: 'NY')
  • countryCode : 국가 코드(예: 'US')
  • venueId : 특정 장소 ID
  • attractionId : 특정 어트랙션 ID
  • classificationName : 이벤트 카테고리(예: '스포츠', '음악')
  • format : 출력 형식('json' 또는 'text', 기본값은 'json')

예시

구조화된 JSON 출력(기본값)
<use_mcp_tool> <server_name>ticketmaster</server_name> <tool_name>search_ticketmaster</tool_name> <arguments> { "type": "event", "keyword": "concert", "startDate": "2025-02-01", "endDate": "2025-02-28", "city": "New York", "stateCode": "NY" } </arguments> </use_mcp_tool>
사람이 읽을 수 있는 텍스트 출력
<use_mcp_tool> <server_name>ticketmaster</server_name> <tool_name>search_ticketmaster</tool_name> <arguments> { "type": "event", "keyword": "concert", "startDate": "2025-02-01", "endDate": "2025-02-28", "city": "New York", "stateCode": "NY", "format": "text" } </arguments> </use_mcp_tool>

개발

  1. 저장소를 복제합니다
  2. 예제 환경 파일을 복사하세요.
    cp .env.example .env
  3. Ticketmaster API 키를 .env 에 추가하세요.
  4. 종속성 설치:
    npm install
  5. 프로젝트를 빌드하세요:
    npm run build
  6. 검사관과 함께 테스트:
    npm run inspector

기여하다

기여를 환영합니다! 풀 리퀘스트를 제출해 주세요. 주요 변경 사항의 경우, 먼저 이슈를 열어 변경 사항을 논의해 주세요.

특허

MIT 라이센스 - 자세한 내용은 라이센스 파일을 참조하세요.

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Ticketmaster API를 통해 매디슨 스퀘어 가든에서 열리는 이벤트를 검색할 수 있는 도구를 제공하며, 이름, 날짜, 가격, 티켓 구매 링크와 같은 이벤트 세부 정보가 포함된 구조화된 데이터를 반환합니다.

  1. 특징
    1. 설치
      1. 구성
        1. 용법
          1. 필수 매개변수
          2. 선택적 매개변수
          3. 예시
        2. 개발
          1. 기여하다
            1. 특허

              Related MCP Servers

              • A
                security
                F
                license
                A
                quality
                This server integrates with the Ticketmaster API to provide AI agents with real-time concert and event data, enabling dynamic fetching and formatting for ease of interpretation.
                Last updated -
                1
                Python
              • A
                security
                A
                license
                A
                quality
                This server provides tools for AI assistants to interact with the Eventbrite API, allowing users to search for events, get event details, retrieve venue information, and list event categories.
                Last updated -
                4
                2
                1
                JavaScript
                MIT License
                • Apple
              • -
                security
                A
                license
                -
                quality
                Integrates with the Eventbrite API to provide AI-assisted event management capabilities for viewing events, tracking attendees, and generating analytics reports.
                Last updated -
                MIT License
                • Apple
              • -
                security
                F
                license
                -
                quality
                An MCP server that enables scheduling, updating, deleting, and listing calendar appointments through Cal.com's Calendar API.
                Last updated -
                JavaScript

              View all related MCP servers

              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/delorenj/mcp-server-ticketmaster'

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