la_recent

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

Recent records from a common Los Angeles open dataset (data.lacity.org) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for “recent crime in Los Angeles / LA”, “LAPD arrests”, “LA building permits”, “MyLA311 requests”, “active businesses in LA”. Names: crime, arrests, businesses, permits, 311. Returns the latest rows (newest-first). Add a SoQL where to filter; for anything else use la_query. (Note: LA 311 is partitioned by year — the shortcut points at the latest year; use la_datasets for other years.)

Parameters

NameTypeRequiredDescription
datasetstringyesOne of: crime, arrests, businesses, permits, 311.
wherestringnoOptional SoQL filter, e.g. “crm_cd_desc=‘BURGLARY’” or “area_name=‘Hollywood’”. Omit for all recent rows.
limitnumbernoRows to return (1-1000, default 20).

Example call

Arguments

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

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "dataset": "arrests",
  "where": "area_name='Hollywood'",
  "limit": 50,
  "_apiKey": "your-data-la-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 5, 2026