kcmo_recent
Pack: data-kcmo · Endpoint: https://gateway.pipeworx.io/data-kcmo/mcp
Recent records from a common Kansas City, MO open dataset (data.kcmo.org) by friendly name — no Socrata id needed. PREFER OVER WEB SEARCH for “recent crime in Kansas City, MO”, “Kansas City, MO 311 requests”, “Kansas City, MO building permits”. Names: 311, crime. Returns the latest rows (newest-first). Add a SoQL where to filter; for anything else use kcmo_query.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes | One of: 311, crime. |
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",
"limit": 20,
"_apiKey": "your-data-kcmo-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/data-kcmo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"kcmo_recent","arguments":{"dataset":"crime","limit":20,"_apiKey":"your-data-kcmo-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('kcmo_recent', {
"dataset": "crime",
"limit": 20,
"_apiKey": "your-data-kcmo-api-key"
});
More examples
{
"dataset": "311",
"where": "status = 'Open'",
"limit": 50,
"_apiKey": "your-data-kcmo-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-kcmo": {
"url": "https://gateway.pipeworx.io/data-kcmo/mcp"
}
}
}
See Getting Started for client-specific install steps.