返回 Skill 列表
extension
分类: 其它无需 API Key

Strider ustubhub

通过 Strider Labs MCP 连接器在 StubHub 上买卖票。搜索二手票、比较价格、购买保证票、挂出自己的票。完整自动...

person作者: markswendsen-codehubclawhub

Strider StubHub Connector

MCP connector for the StubHub ticket marketplace — buy resale tickets, compare prices, sell your tickets, all with FanProtect guarantee. Part of the Strider Labs action execution layer for AI agents.

Installation

npm install @striderlabs/mcp-stubhub

MCP Configuration

Add to your MCP client configuration (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "stubhub": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-stubhub"]
    }
  }
}

Available Tools

stubhub.search_events

Search for events with available tickets.

Input Schema:

{
  "query": "string (artist, team, show)",
  "location": "string (city)",
  "date_from": "string (optional: YYYY-MM-DD)",
  "date_to": "string (optional: YYYY-MM-DD)",
  "category": "string (optional: concerts, sports, theater)"
}

Output:

{
  "events": [{
    "id": "string",
    "name": "string",
    "date": "string (datetime)",
    "venue": "string",
    "min_price": "number",
    "ticket_count": "number"
  }]
}

stubhub.get_listings

Get available ticket listings for an event.

Input Schema:

{
  "event_id": "string",
  "quantity": "number",
  "sort": "string (optional: price, value, section)"
}

Output:

{
  "listings": [{
    "id": "string",
    "section": "string",
    "row": "string",
    "quantity": "number",
    "price_per_ticket": "number",
    "total_with_fees": "number",
    "notes": "string (aisle, obstructed view, etc.)"
  }]
}

stubhub.purchase_tickets

Buy tickets from a listing.

Input Schema:

{
  "listing_id": "string",
  "quantity": "number",
  "delivery_method": "string (instant_download, email)",
  "payment_method_id": "string"
}

stubhub.list_tickets

List your tickets for sale.

Input Schema:

{
  "event_id": "string",
  "section": "string",
  "row": "string",
  "seats": ["string"],
  "price_per_ticket": "number",
  "quantity": "number"
}

stubhub.get_my_listings

Get your active ticket listings.

stubhub.update_listing

Update price or details on a listing.

stubhub.get_my_purchases

Get purchased tickets.

stubhub.cancel_listing

Remove tickets from sale.

Authentication

First use triggers OAuth. FanProtect guarantee covers all purchases. Tokens stored encrypted per-user.

Usage Examples

Find tickets:

Search StubHub for tickets to the Super Bowl

Best deal:

Find the cheapest lower level tickets on StubHub for the Lakers game tonight

Sell tickets:

List my 2 Taylor Swift tickets on StubHub for $400 each

Track sales:

Have my StubHub tickets sold yet?

Error Handling

| Code | Meaning | Action | |------|---------|--------| | AUTH_EXPIRED | Session expired | Re-authenticate | | LISTING_SOLD | Tickets no longer available | Find alternatives | | BELOW_MIN_PRICE | Price too low | Increase price | | INVALID_TICKETS | Can't verify tickets | Check barcode |

Use Cases

  • Sold-out events: find tickets after sellout
  • Last-minute plans: instant download tickets
  • Reselling: sell tickets you can't use
  • Price hunting: compare across listings

Links

  • npm: https://npmjs.com/package/@striderlabs/mcp-stubhub
  • Strider Labs: https://striderlabs.ai