get_series

Pack: datos-ar · Endpoint: https://gateway.pipeworx.io/datos-ar/mcp

Fetch observations for one or more Argentine time series by id (ids come from search_series).

Parameters

NameTypeRequiredDescription
idsstringyesOne series id, or several comma-separated, e.g. “143.3_NO_PR_2004_A_21”. From search_series.
start_datestringnoEarliest date, ISO YYYY-MM-DD (optional).
end_datestringnoLatest date, ISO YYYY-MM-DD (optional).
limitnumbernoMax rows to return (default 100, API max 1000).
collapsestringnoResample frequency, e.g. “year” to roll monthly data up to yearly.
collapse_aggregationstringnoHow to aggregate when collapsing (default avg).
representation_modestringnoValue transform: raw value (default), period change, or change vs a year ago.
metadatastringnoMetadata detail level (default simple).

Example call

Arguments

{
  "ids": "143.3_NO_PR_2004_A_21"
}

curl

curl -X POST https://gateway.pipeworx.io/datos-ar/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_series","arguments":{"ids":"143.3_NO_PR_2004_A_21"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_series', {
  "ids": "143.3_NO_PR_2004_A_21"
});

More examples

{
  "ids": "143.3_NO_PR_2004_A_21,145.2_NO_PR_2004_A_15",
  "start_date": "2020-01-01",
  "end_date": "2023-12-31",
  "collapse": "year",
  "representation_mode": "percent_change_a_year_ago"
}

Connect

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

{
  "mcpServers": {
    "datos-ar": {
      "url": "https://gateway.pipeworx.io/datos-ar/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 31, 2026