search_events

Pack: skiddle · Endpoint: https://gateway.pipeworx.io/skiddle/mcp

Search UK events (gigs, club nights, festivals, comedy, theatre, exhibitions). Filter by location (latitude+longitude+radius), keyword, category, and date window. Sorted by date or distance.

Parameters

NameTypeRequiredDescription
latitudenumbernoSearch-centre latitude (pair with longitude), e.g. 51.5074 for London.
longitudenumbernoSearch-centre longitude (pair with latitude), e.g. -0.1278 for London.
radiusnumbernoSearch radius in miles (default 10, used with lat/long).
keywordstringnoKeyword to match in event/venue/artist, e.g. “techno”, “Adele”.
categorystringnoCategory code: FEST, LIVE, CLUB, COMEDY, THEATRE, EXHIB, KIDS, BARPUB, LGB, ARTS, FILM, SPORT, DATE. Use the categories tool.
fromstringnoEarliest event date YYYY-MM-DD (default: today).
tostringnoLatest event date YYYY-MM-DD.
orderstringnoResult ordering (default “date”; “distance” needs lat/long).
limitnumbernoMax events (1-100, default 20).
offsetnumbernoPagination offset (default 0).

Example call

Arguments

{
  "latitude": 51.5074,
  "longitude": -0.1278,
  "radius": 10,
  "keyword": "techno",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/skiddle/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_events","arguments":{"latitude":51.5074,"longitude":-0.1278,"radius":10,"keyword":"techno","limit":20}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_events', {
  "latitude": 51.5074,
  "longitude": -0.1278,
  "radius": 10,
  "keyword": "techno",
  "limit": 20
});

More examples

{
  "latitude": 53.4808,
  "longitude": -2.2426,
  "radius": 15,
  "category": "LIVE",
  "from": "2024-01-15",
  "to": "2024-02-15",
  "order": "distance",
  "limit": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "skiddle": {
      "url": "https://gateway.pipeworx.io/skiddle/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 7, 2026