seattle_recent
Pack: data-seattle · Endpoint: https://gateway.pipeworx.io/data-seattle/mcp
Recent records from a common Seattle open dataset (data.seattle.gov) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for “recent crime in Seattle”, “Seattle fire 911 calls”, “Seattle business licenses”, “Seattle code complaints”. Names: crime, fire911, business, code_complaints. Returns the latest rows (newest-first). Add a SoQL where to filter; for anything else use seattle_query.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes | One of: crime, fire911, business, code_complaints. |
where | string | no | Optional SoQL filter, e.g. “offense=‘BURGLARY’”. Omit for all recent rows. |
limit | number | no | Rows to return (1-1000, default 20). |
Example call
Arguments
{
"dataset": "crime",
"_apiKey": "your-data-seattle-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/data-seattle/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"seattle_recent","arguments":{"dataset":"crime","_apiKey":"your-data-seattle-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('seattle_recent', {
"dataset": "crime",
"_apiKey": "your-data-seattle-api-key"
});
More examples
{
"dataset": "fire911",
"where": "call_type='Structure Fire'",
"limit": 50,
"_apiKey": "your-data-seattle-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-seattle": {
"url": "https://gateway.pipeworx.io/data-seattle/mcp"
}
}
}
See Getting Started for client-specific install steps.