series_data

Pack: ine-es · Endpoint: https://gateway.pipeworx.io/ine-es/mcp

Fetch data for ONE INE series by its code. Use nult=N for the last N periods, or date=“YYYYMMDD:” for from that date on. Returns the series with its Data[] array of {Fecha (epoch ms), Anyo, Valor} points.

Parameters

NameTypeRequiredDescription
seriesCodestringyesSeries code (COD), e.g. “IPC251852”.
nultnumbernoReturn the last N periods (default 12 if no date given).
datestringnoDate filter, e.g. “20250101:” for from Jan 2025 onward.
langstringnoResponse language. Default EN.

Example call

Arguments

{
  "seriesCode": "IPC251852"
}

curl

curl -X POST https://gateway.pipeworx.io/ine-es/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"series_data","arguments":{"seriesCode":"IPC251852"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('series_data', {
  "seriesCode": "IPC251852"
});

More examples

{
  "seriesCode": "IPC251852",
  "nult": 24,
  "lang": "ES"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ine-es": {
      "url": "https://gateway.pipeworx.io/ine-es/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026