datasets
Pack: data-ny · Endpoint: https://gateway.pipeworx.io/data-ny/mcp
Search dataset catalogue.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | |
limit | number | no | |
offset | number | no |
Example call
curl -X POST https://gateway.pipeworx.io/data-ny/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"datasets","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Array of dataset results |
count | number | Total number of results matching query |
Full JSON Schema
{
"type": "object",
"description": "Socrata catalog search results",
"properties": {
"results": {
"type": "array",
"description": "Array of dataset results",
"items": {
"type": "object",
"properties": {
"resource": {
"type": "object",
"description": "Dataset resource metadata"
},
"classification": {
"type": "object",
"description": "Dataset classification information"
}
}
}
},
"count": {
"type": "number",
"description": "Total number of results matching query"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"data-ny": {
"url": "https://gateway.pipeworx.io/data-ny/mcp"
}
}
}
See Getting Started for client-specific install steps.