edmonton_recent

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

Recent records from a common Edmonton open dataset (data.edmonton.ca) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for “Edmonton 311 requests”, “Edmonton building permits”. Names: 311, permits. Returns the latest rows (newest-first). Add a SoQL where to filter; for anything else use edmonton_query.

Parameters

NameTypeRequiredDescription
datasetstringyesOne of: 311, permits.
wherestringnoOptional SoQL filter, e.g. “incident_category=‘Larceny Theft’” or “supervisor_district=6”. Omit for all recent rows.
limitnumbernoRows to return (1-1000, default 20).

Example call

Arguments

{
  "dataset": "311",
  "_apiKey": "your-data-edmonton-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/data-edmonton/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"edmonton_recent","arguments":{"dataset":"311","_apiKey":"your-data-edmonton-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('edmonton_recent', {
  "dataset": "311",
  "_apiKey": "your-data-edmonton-api-key"
});

More examples

{
  "dataset": "permits",
  "where": "permit_type='Building'",
  "limit": 50,
  "_apiKey": "your-data-edmonton-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026