events

Pack: boston-calendar · Endpoint: https://gateway.pipeworx.io/boston-calendar/mcp

Upcoming Greater Boston events from The Boston Calendar. Defaults to a 2-week window from today. Filter by date range, keyword (title/description/tags), and free admission. Returns normalized events sorted by date/time.

Parameters

NameTypeRequiredDescription
fromstringnoEarliest event date YYYY-MM-DD (default: today).
tostringnoLatest event date YYYY-MM-DD (default: 14 days from from). Pass "" for no upper bound.
querystringnoKeyword filter over title, description, and tags, e.g. “free music”, “kids”, “art”.
free_onlybooleannoIf true, only events whose admission is free.
limitnumbernoMax events to return (1-200, default 50).

Example call

Arguments

{
  "query": "music"
}

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "from": "2025-01-15",
  "to": "2025-02-15",
  "query": "kids",
  "free_only": true,
  "limit": 30
}

Connect

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

{
  "mcpServers": {
    "boston-calendar": {
      "url": "https://gateway.pipeworx.io/boston-calendar/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026