events

Pack: sf-recpark · Endpoint: https://gateway.pipeworx.io/sf-recpark/mcp

Upcoming San Francisco Rec & Park events & programming (parks, plazas, rec centers). Filter by date window and keyword (title/location/description). Free/outdoor/community civic events.

Parameters

NameTypeRequiredDescription
fromstringnoEarliest event date YYYY-MM-DD (default: today).
tostringnoLatest event date YYYY-MM-DD (default: no upper bound).
querystringnoKeyword over title, location, and description, e.g. “yoga”, “Golden Gate”, “kids”.
limitnumbernoMax events to return (1-100, default 50).

Example call

Arguments

{
  "from": "2024-01-15",
  "to": "2024-02-15",
  "query": "yoga"
}

curl

curl -X POST https://gateway.pipeworx.io/sf-recpark/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"events","arguments":{"from":"2024-01-15","to":"2024-02-15","query":"yoga"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('events', {
  "from": "2024-01-15",
  "to": "2024-02-15",
  "query": "yoga"
});

More examples

{
  "from": "2024-01-20",
  "query": "Golden Gate",
  "limit": 25
}

Connect

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

{
  "mcpServers": {
    "sf-recpark": {
      "url": "https://gateway.pipeworx.io/sf-recpark/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 8, 2026