nola_recent

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

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

Parameters

NameTypeRequiredDescription
datasetstringyesOne of: 311, crime, permits.
wherestringnoOptional SoQL filter. Omit for all recent rows.
limitnumbernoRows to return (1-1000, default 20).

Example call

Arguments

{
  "dataset": "crime",
  "_apiKey": "your-data-nola-api-key"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nola_recent', {
  "dataset": "crime",
  "_apiKey": "your-data-nola-api-key"
});

More examples

{
  "dataset": "311",
  "where": "type_name = 'Pothole'",
  "limit": 50,
  "_apiKey": "your-data-nola-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 5, 2026