event

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

Get a single Skiddle event by id, with full details and venue.

Parameters

NameTypeRequiredDescription
idstringyesSkiddle event id.

Example call

Arguments

{
  "id": "38047620"
}

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":"event","arguments":{"id":"38047620"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('event', {
  "id": "38047620"
});

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