spp_files
Pack: spp · Endpoint: https://gateway.pipeworx.io/spp/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/spp_files for the schema, then POST the same URL with its arguments for the data.
Browse the SPP Marketplace public file archive — the raw published market data behind every SPP report, back to 2013. Lists folders and files (name, path, size, modified) for a dataset, or downloads one file as parsed rows. Datasets include rtbm-lmp-by-location, da-lmp-by-location and the other Marketplace feeds. Use when you need a SPECIFIC historical interval, day or dataset rather than the current snapshot.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
dataset | string | yes | Marketplace dataset name, e.g. “rtbm-lmp-by-location” or “da-lmp-by-location”. This is the fsName in SPP’s own file browser. |
path | string | no | Folder or file path inside the dataset, e.g. ”/” or “/2026/09/By_Interval/17”. Default ”/”. |
download | boolean | no | true = treat path as a FILE and return its parsed rows instead of a directory listing. Default false. |
limit | number | no | Max entries or rows to return (default 100, max 2000). |
Example call
Arguments
{
"dataset": "rtbm-lmp-by-location",
"path": "/",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/spp/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"spp_files","arguments":{"dataset":"rtbm-lmp-by-location","path":"/","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('spp_files', {
"dataset": "rtbm-lmp-by-location",
"path": "/",
"limit": 5
});
More examples
{
"dataset": "rtbm-lmp-by-location",
"path": "/2026/09/By_Interval/17",
"limit": 3
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"spp": {
"url": "https://gateway.pipeworx.io/spp/mcp"
}
}
}
See Getting Started for client-specific install steps.