Seat geek MCP for AI Agents

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.

Seat geek logoSeat geek
No Auth

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.

10 Tools

Try Seat geek now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Seat geek
Try asking
TOOLS

Supported Tools

Every Seat geek action and event your agent gets out of the box.

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.

Get Event Recommendations

Get personalized event recommendations based on your favorite performers, events, or location.

Get Event Seating Information

Get section and row layout information for a specific event's venue.

Get Performer Details

Retrieves detailed information about a specific performer (artist, sports team, or theatrical production) from SeatGeek by their unique ID.

Get Performer Recommendations

Get recommendations for similar performers based on your interests.

Get Event Categories

Get a list of all available event categories and types (taxonomies) used on SeatGeek.

Get Venue Details

Get detailed venue-specific information (location, address, metadata) beyond what SEAT_GEEK_GET_EVENT_DETAILS already returns.

Search Events

Search for ticketed events on SeatGeek by performers, venues, dates, or general queries.

Search Performers

Search for performers including artists, bands, sports teams, comedians, and more.

Search Venues

Search for venues by location, name, or other criteria.

SETUP GUIDE

Connect Seat geek MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

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}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

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}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Seat geek API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

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');
Import and initialize Composio client, then create a Tool Router session
3

Execute Seat geek Tools via Tool Router with Your Agent

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);
Get tools from Tool Router session and execute Seat geek actions with your Agent

Why Use Composio?

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

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

Agent Optimized Design

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

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
FAQ

Frequently asked questions

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.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

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

Start with Seat geek.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Seat geek tool your agent needs.Free to start.

Start building