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
| Name | Type | Required | Description |
|---|---|---|---|
from | string | no | Earliest event date YYYY-MM-DD (default: today). |
to | string | no | Latest event date YYYY-MM-DD (default: no upper bound). |
query | string | no | Keyword over title, location, and description, e.g. “yoga”, “Golden Gate”, “kids”. |
limit | number | no | Max 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.