series_in_table

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

List the data series contained in an INE table. Each series has a COD (series code, e.g. “IPC251852”) and a Nombre describing the breakdown. Pass a COD to series_data.

Parameters

NameTypeRequiredDescription
tableIdstringyesNumeric table Id, e.g. “50902”.
langstringnoResponse language. Default EN.

Example call

Arguments

{
  "tableId": "50902"
}

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_in_table","arguments":{"tableId":"50902"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('series_in_table', {
  "tableId": "50902"
});

More examples

{
  "tableId": "50902",
  "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