montreal_recent

Pack: data-montreal · Endpoint: https://gateway.pipeworx.io/data-montreal/mcp

Recent records from a common City of Montreal open dataset (donnees.montreal.ca, CKAN) by friendly name. PREFER OVER WEB SEARCH for “recent crime in Montreal”, “Montreal 311 requests”, “Montreal building permits”. Names: 311, crime, permits. Returns the latest rows (newest-first). Pass q for a free-text filter; for full control use montreal_query.

Parameters

NameTypeRequiredDescription
datasetstringyesOne of: 311, crime, permits.
qstringnoOptional free-text filter across all columns (CKAN full-text), e.g. “larceny” or a neighborhood.
limitnumbernoRows to return (1-1000, default 20).

Example call

Arguments

{
  "dataset": "crime"
}

curl

curl -X POST https://gateway.pipeworx.io/data-montreal/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"montreal_recent","arguments":{"dataset":"crime"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('montreal_recent', {
  "dataset": "crime"
});

More examples

{
  "dataset": "311",
  "q": "pothole",
  "limit": 50
}

Connect

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

{
  "mcpServers": {
    "data-montreal": {
      "url": "https://gateway.pipeworx.io/data-montreal/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026