events

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

Curated things-to-do / events for a DoStuff metro. Defaults to today; pass date and/or days to cover a window (e.g. a weekend). Optionally filter by category (music, art, performing-arts, comedy, food-drink, other-fun-deals) and free-only. Sorted by start time.

Parameters

NameTypeRequiredDescription
metrostringyesMetro slug: nyc, chicago, boston, austin, san-antonio, sf-bay. Use the metros tool to list.
datestringnoStart date YYYY-MM-DD (default: today, US Eastern).
daysnumbernoHow many days from the start date to include (1-7, default 1). Use 3 for a weekend.
categorystringnoFilter by category, e.g. “music”, “art”, “comedy”, “performing-arts”, “food-drink”.
free_onlybooleannoIf true, only return free events.
limitnumbernoMax events to return (1-200, default 50).

Example call

Arguments

{
  "metro": "nyc"
}

curl

curl -X POST https://gateway.pipeworx.io/dostuff/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"events","arguments":{"metro":"nyc"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('events', {
  "metro": "nyc"
});

More examples

{
  "metro": "sf-bay",
  "date": "2025-01-18",
  "days": 3,
  "category": "music",
  "free_only": true,
  "limit": 25
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026