dallas_query
Pack: data-dallas · Endpoint: https://gateway.pipeworx.io/data-dallas/mcp
Run a raw SoQL query against any Dallas open-data resource (www.dallasopendata.com) by its Socrata id (8-char like “qv6i-rri7”). Full SoQL: where/select/group/order/limit/offset. Use dallas_datasets to find a resource id, or dallas_recent for the common ones.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
resource_id | string | yes | Socrata resource id, e.g. “qv6i-rri7”. |
where | string | no | SoQL $where filter. |
select | string | no | SoQL $select. |
group | string | no | SoQL $group. |
order | string | no | SoQL $order. |
limit | number | no | Max rows (default 100, max 5000). |
offset | number | no | Row offset for paging. |
Example call
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_query","arguments":{}}}'
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.