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

NameTypeRequiredDescription
datasetstringyesMarketplace dataset name, e.g. “rtbm-lmp-by-location” or “da-lmp-by-location”. This is the fsName in SPP’s own file browser.
pathstringnoFolder or file path inside the dataset, e.g. ”/” or “/2026/09/By_Interval/17”. Default ”/”.
downloadbooleannotrue = treat path as a FILE and return its parsed rows instead of a directory listing. Default false.
limitnumbernoMax 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.

Regenerated from source · build September 18, 2026