dallas_recent
Pack: data-dallas · Endpoint: https://gateway.pipeworx.io/data-dallas/mcp
Recent records from a common Dallas open dataset (www.dallasopendata.com) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for “recent crime in Dallas”, “Dallas 311 requests”, “Dallas building permits”. Names: 311, crime, permits. Returns the latest rows (newest-first). Add a SoQL where to filter; for anything else use dallas_query.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes | One of: 311, crime, permits. |
where | string | no | Optional SoQL filter. Omit for all recent rows. |
limit | number | no | Rows to return (1-1000, default 20). |
Example call
Arguments
{
"dataset": "crime",
"_apiKey": "your-data-dallas-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/data-dallas/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dallas_recent","arguments":{"dataset":"crime","_apiKey":"your-data-dallas-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('dallas_recent', {
"dataset": "crime",
"_apiKey": "your-data-dallas-api-key"
});
More examples
{
"dataset": "311",
"where": "created_date > '2024-01-01'",
"limit": 50,
"_apiKey": "your-data-dallas-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-dallas": {
"url": "https://gateway.pipeworx.io/data-dallas/mcp"
}
}
}
See Getting Started for client-specific install steps.