# Seat geek

```json
{
  "name": "Seat geek",
  "slug": "seat_geek",
  "url": "https://composio.dev/toolkits/seat_geek",
  "markdown_url": "https://composio.dev/toolkits/seat_geek.md",
  "logo_url": "https://seatgeek.com/favicon.ico",
  "categories": [
    "entertainment & media"
  ],
  "is_composio_managed": false,
  "updated_at": "2026-05-12T10:24:58.522Z"
}
```

![Seat geek logo](https://seatgeek.com/favicon.ico)

## Description

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Seat geek MCP or direct API to search upcoming events, retrieve performer info, explore venues, and recommend live entertainment through natural language.

## Summary

SeatGeek is a live event platform offering APIs for concerts, sports, and theater data. Instantly access events, venues, and performers info for smarter ticketing and discovery.

## Categories

- entertainment & media

## Toolkit Details

- Tools: 10

## Images

- Logo: https://seatgeek.com/favicon.ico

## Authentication

- **No Auth**
  - Type: `custom`
  - Description: No Auth authentication for Seat Geek.
  - Setup:
    - Configure No Auth credentials for Seat Geek.
    - Use the credentials when creating an auth config in Composio.

## Suggested Prompts

- Find concerts happening in New York this weekend
- Show me available seats for Taylor Swift’s next show
- Recommend sports events near San Francisco next month
- List upcoming comedy shows at Madison Square Garden

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `SEAT_GEEK_GET_EVENT_DETAILS` | Get Event Details | Get comprehensive details about a specific event including venue, performers, date/time (in local venue time), ticket information, and a SeatGeek event URL. Performer and venue fields are basic summaries; use SEAT_GEEK_GET_PERFORMER_DETAILS or SEAT_GEEK_GET_VENUE_DETAILS for additional depth. For similarly named or recurring events, cross-check date, venue, league, and competition fields to confirm the correct event. |
| `SEAT_GEEK_GET_EVENT_RECOMMENDATIONS` | Get Event Recommendations | Get personalized event recommendations based on your favorite performers, events, or location. Discover new events you might enjoy. |
| `SEAT_GEEK_GET_EVENT_SEATING` | Get Event Seating Information | Get section and row layout information for a specific event's venue. Returns available sections (e.g., '101', 'floor', 'suite-14') mapped to their row identifiers. IMPORTANT: Only works for events at major venues with seating maps (stadiums, arenas). Small venue concerts or general admission events will return a 404 error. Use SEAT_GEEK_SEARCH_EVENTS with taxonomies_name='sports' to find events that have seating data. |
| `SEAT_GEEK_GET_PERFORMER_DETAILS` | Get Performer Details | Retrieves detailed information about a specific performer (artist, sports team, or theatrical production) from SeatGeek by their unique ID. Returns comprehensive data including performer name, type, images, popularity scores, upcoming event counts, genre/taxonomy classifications, and ticket URLs. Does not include box scores, match statistics, or performance stats. Use this action when you need fields beyond the basic performer info already embedded in event details (e.g., popularity scores, full taxonomy, upcoming event counts). To find performer IDs, first use the search_performers action to search by name. |
| `SEAT_GEEK_GET_PERFORMER_RECOMMENDATIONS` | Get Performer Recommendations | Get recommendations for similar performers based on your interests. Discover new artists, bands, teams, or entertainers you might enjoy. |
| `SEAT_GEEK_GET_TAXONOMIES` | Get Event Categories | Get a list of all available event categories and types (taxonomies) used on SeatGeek. Useful for understanding event classification and filtering options. |
| `SEAT_GEEK_GET_VENUE_DETAILS` | Get Venue Details | Get detailed venue-specific information (location, address, metadata) beyond what SEAT_GEEK_GET_EVENT_DETAILS already returns. Only call this tool when additional venue fields are needed that are absent from the event details response. |
| `SEAT_GEEK_SEARCH_EVENTS` | Search Events | Search for ticketed events on SeatGeek by performers, venues, dates, or general queries. Covers concerts, sports games, theater shows, and other live entertainment. Only indexes ticketed events; empty results may indicate coverage gaps. Avoid over-filtering — start broad and progressively narrow. lat and lon parameters must be supplied together for location-based filtering. |
| `SEAT_GEEK_SEARCH_PERFORMERS` | Search Performers | Search for performers including artists, bands, sports teams, comedians, and more. Find your favorite entertainers and see their upcoming events. |
| `SEAT_GEEK_SEARCH_VENUES` | Search Venues | Search for venues by location, name, or other criteria. Find stadiums, theaters, concert halls, and other entertainment venues. Supports lat/lon coordinate filtering (both must be provided together). |

## Supported Triggers

None listed.

## Installation and MCP Setup

### Path 1: SDK Installation

#### Path 1, Step 1: Install Composio

Install the Composio SDK
```python
pip install composio_openai
```

```typescript
npm install @composio/openai
```

#### Path 1, Step 2: Initialize Composio and Create Tool Router Session

Import and initialize Composio client, then create a Tool Router session
```python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
```

```typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
```

#### Path 1, Step 3: Execute Seat geek Tools via Tool Router with Your Agent

Get tools from Tool Router session and execute Seat geek actions with your Agent
```python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Find upcoming concerts in New York City this weekend'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
```

```typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Find upcoming concerts in New York City this weekend'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
```

### Path 2: MCP Server Setup

#### Path 2, Step 1: Install Composio

Install the Composio SDK and Claude Agent SDK
```python
pip install composio claude-agent-sdk
```

```typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
```

#### Path 2, Step 2: Create Tool Router Session

Initialize the Composio client and create a Tool Router session
```python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
```

```typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
```

#### Path 2, Step 3: Connect to AI Agent

Use the MCP server with your AI agent
```python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Seat geek tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Find concerts happening in New York this weekend')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
```

```typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Find concerts happening in New York this weekend' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
```

## Why Use Composio?

### 1. AI Native Seat geek Integration

- Supports both Seat geek MCP and direct API based integrations
- Structured, LLM-friendly schemas for reliable tool execution
- Rich coverage for searching events, venues, and performer info in Seat geek

### 2. Managed Auth

- No Seat geek API keys required—Composio handles everything securely
- Central place to manage, scope, and revoke Seat geek access
- Per user and per environment credential isolation for safer access control

### 3. Agent Optimized Design

- Tools tuned for high success rates and minimal agent errors
- Comprehensive logs for every Seat geek API call and result

### 4. Enterprise Grade Security

- Fine-grained RBAC lets you control which agents access Seat geek
- Scoped, least privilege access to event, venue, and performer data
- Full audit trail for compliance and review of agent actions

## Use Seat geek with any AI Agent Framework

Choose a framework you want to connect Seat geek with:

- [OpenAI Agents SDK](https://composio.dev/toolkits/seat_geek/framework/open-ai-agents-sdk)
- [Claude Agent SDK](https://composio.dev/toolkits/seat_geek/framework/claude-agents-sdk)
- [Claude Code](https://composio.dev/toolkits/seat_geek/framework/claude-code)
- [Claude Cowork](https://composio.dev/toolkits/seat_geek/framework/claude-cowork)
- [Codex](https://composio.dev/toolkits/seat_geek/framework/codex)
- [OpenClaw](https://composio.dev/toolkits/seat_geek/framework/openclaw)
- [Hermes](https://composio.dev/toolkits/seat_geek/framework/hermes-agent)
- [Google ADK](https://composio.dev/toolkits/seat_geek/framework/google-adk)
- [LangChain](https://composio.dev/toolkits/seat_geek/framework/langchain)
- [Vercel AI SDK](https://composio.dev/toolkits/seat_geek/framework/ai-sdk)
- [Mastra AI](https://composio.dev/toolkits/seat_geek/framework/mastra-ai)
- [LlamaIndex](https://composio.dev/toolkits/seat_geek/framework/llama-index)
- [CrewAI](https://composio.dev/toolkits/seat_geek/framework/crew-ai)
- [Pydantic AI](https://composio.dev/toolkits/seat_geek/framework/pydantic-ai)
- [AutoGen](https://composio.dev/toolkits/seat_geek/framework/autogen)

## Related Toolkits

- [Youtube](https://composio.dev/toolkits/youtube) - YouTube is a leading video-sharing platform for uploading, streaming, and discovering content. It empowers creators and businesses to reach global audiences and monetize their work.
- [Amara](https://composio.dev/toolkits/amara) - Amara is a collaborative platform for creating and managing subtitles and captions for videos. It helps make content accessible and multilingual for global audiences.
- [Cats](https://composio.dev/toolkits/cats) - Cats is an API with a huge library of cat images, breed data, and cat facts. It makes finding adorable cat photos and trivia effortless for your apps and users.
- [Chatfai](https://composio.dev/toolkits/chatfai) - Chatfai is an AI platform that lets users talk to AI versions of fictional characters from books, movies, and games. It offers an engaging, interactive experience for fans to chat, roleplay, and explore creative dialogues.
- [Cincopa](https://composio.dev/toolkits/cincopa) - Cincopa is a multimedia platform for uploading, managing, and customizing videos, images, and audio. It helps you deliver engaging media experiences with robust APIs and flexible integrations.
- [Dungeon fighter online](https://composio.dev/toolkits/dungeon_fighter_online) - Dungeon Fighter Online (DFO) is an arcade-style, side-scrolling action RPG packed with dynamic combat and progression. Play solo or with friends to battle monsters, complete quests, and upgrade your characters.
- [Elevenlabs](https://composio.dev/toolkits/elevenlabs) - Elevenlabs is an advanced AI voice generation platform for lifelike, multilingual speech synthesis. Perfect for creating natural voices for videos, apps, and business content in seconds.
- [Elevenreader](https://composio.dev/toolkits/elevenreader) - Elevenreader is an AI-powered text-to-speech service by ElevenLabs that converts written content into lifelike audio. It enables fast, natural audio generation from any text.
- [Epic games](https://composio.dev/toolkits/epic_games) - Epic Games is a leading video game publisher and digital storefront, known for Fortnite and Unreal Engine. It lets gamers access, manage, and purchase games all in one place.
- [Fal.ai](https://composio.dev/toolkits/fal_ai) - Fal.ai is a generative media platform offering 600+ AI models for images, video, voice, and audio. Developers use Fal.ai for fast, scalable access to cutting-edge generative AI tools.
- [Giphy](https://composio.dev/toolkits/giphy) - Giphy is the largest online library for searching and sharing GIFs and stickers. Instantly add vibrant animated content to your apps, chats, and workflows.
- [Headout](https://composio.dev/toolkits/headout) - Headout is a global platform for booking travel experiences, tours, and entertainment. It helps users discover and secure activities at top destinations, all in one place.
- [Imagekit io](https://composio.dev/toolkits/imagekit_io) - ImageKit.io is a cloud-based media management platform for image and video delivery. Instantly optimize, transform, and deliver visuals globally via a lightning-fast CDN.
- [Listennotes](https://composio.dev/toolkits/listennotes) - Listennotes is a powerful podcast search engine with a massive global database. Discover, search, and curate podcasts from around the world in seconds.
- [News api](https://composio.dev/toolkits/news_api) - News api is a REST API for searching and retrieving live news articles from across the web. Instantly access headlines, coverage, and breaking stories from thousands of sources.
- [RAWG Video Games Database](https://composio.dev/toolkits/rawg_video_games_database) - RAWG Video Games Database is the largest video game discovery and info service. Instantly access comprehensive details, ratings, and release dates for thousands of games.
- [Shotstack](https://composio.dev/toolkits/shotstack) - Shotstack is a cloud platform for programmatically generating videos, images, and audio. Automate creative content production at scale with flexible RESTful APIs.
- [Spotify](https://composio.dev/toolkits/spotify) - Spotify is a streaming service for music and podcasts with millions of tracks from artists worldwide. Enjoy personalized playlists, recommendations, and seamless listening across all your devices.
- [Ticketmaster](https://composio.dev/toolkits/ticketmaster) - Ticketmaster is a global platform for event discovery, ticket sales, and live entertainment management. Get real-time access to events and streamline ticketing for fans and organizers.
- [Gmail](https://composio.dev/toolkits/gmail) - Gmail is Google's email service with powerful spam protection, search, and G Suite integration. It keeps your inbox organized and makes communication fast and reliable.

## Frequently Asked Questions

### Do I need my own developer credentials to use Seat geek with Composio?

Nope, you don't need any developer credentials at all—Seat geek doesn't require authentication. You can jump right in and start building with Composio, no setup required.

### Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. [Learn more](https://docs.composio.dev/tool-router/overview).

### Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. [Learn more](https://trust.composio.dev).

### What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
