nola_datasets
Pack: data-nola · Endpoint: https://gateway.pipeworx.io/data-nola/mcp
Search the New Orleans open-data catalogue (data.nola.gov) for datasets by keyword. Returns dataset names, descriptions, and Socrata resource ids to use with nola_query.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Keyword(s). |
limit | number | no | Max datasets (1-100, default 20). |
offset | number | no | Offset for paging. |
Example call
Arguments
{
"query": "building permits",
"_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_datasets","arguments":{"query":"building permits","_apiKey":"your-data-nola-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nola_datasets', {
"query": "building permits",
"_apiKey": "your-data-nola-api-key"
});
More examples
{
"query": "housing vacancy",
"limit": 10,
"_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.