events
Pack: montreal-events · Endpoint: https://gateway.pipeworx.io/montreal-events/mcp
Find upcoming public events in Montréal, Canada. Filter by keyword, borough (arrondissement, e.g. “Ville-Marie”, “Le Plateau-Mont-Royal”) and date window. Returns events sorted by start date. Content is in French.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Keyword over title and description, e.g. “musique”, “festival”, “famille”. |
borough | string | no | Filter by arrondissement, e.g. “Ville-Marie”, “Le Plateau-Mont-Royal”, “Rosemont”. |
from | string | no | Include events ending on/after this date YYYY-MM-DD (default: today). |
to | string | no | Include events starting on/before this date YYYY-MM-DD. |
limit | number | no | Max events (1-${MAX_LIMIT}, default 20). |
offset | number | no | Pagination offset (default 0). |
Example call
Arguments
{
"query": "musique",
"borough": "Ville-Marie",
"from": "2024-01-15",
"to": "2024-02-29",
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/montreal-events/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"events","arguments":{"query":"musique","borough":"Ville-Marie","from":"2024-01-15","to":"2024-02-29","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('events', {
"query": "musique",
"borough": "Ville-Marie",
"from": "2024-01-15",
"to": "2024-02-29",
"limit": 20
});
More examples
{
"query": "festival",
"from": "2024-01-15",
"limit": 10
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"montreal-events": {
"url": "https://gateway.pipeworx.io/montreal-events/mcp"
}
}
}
See Getting Started for client-specific install steps.