neso_dataset_resources
Pack: neso · Endpoint: https://gateway.pipeworx.io/neso/mcp
List the resources (data files/tables) inside one NESO UK electricity grid dataset by its id or slug (from neso_search_datasets). Returns the dataset title/description plus each resource’s resource_id, name, format, datastore availability, and last_modified — pick a resource_id with datastore_active for neso_query_data. Example: neso_dataset_resources({ id: “14-days-ahead-wind-forecasts” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | Dataset id or slug from neso_search_datasets, e.g. “1-day-ahead-demand-forecast”. |
Example call
Arguments
{
"id": "14-days-ahead-wind-forecasts"
}
curl
curl -X POST https://gateway.pipeworx.io/neso/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"neso_dataset_resources","arguments":{"id":"14-days-ahead-wind-forecasts"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('neso_dataset_resources', {
"id": "14-days-ahead-wind-forecasts"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"neso": {
"url": "https://gateway.pipeworx.io/neso/mcp"
}
}
}
See Getting Started for client-specific install steps.