get_timeseries

Pack: frankfurter · Endpoint: https://gateway.pipeworx.io/frankfurter/mcp

Get exchange rates over a date range for trend analysis. Returns daily rates between start and end dates. Example: get_timeseries(start_date: “2024-01-01”, end_date: “2024-03-31”, base: “USD”, symbols: “EUR”).

Parameters

NameTypeRequiredDescription
start_datestringyesStart date in YYYY-MM-DD format
end_datestringyesEnd date in YYYY-MM-DD format
basestringnoBase currency code (default “EUR”)
symbolsstringnoComma-separated target currency codes (e.g., “USD,GBP”)

Example call

Arguments

{
  "start_date": "2024-01-01",
  "end_date": "2024-03-31",
  "base": "USD",
  "symbols": "EUR"
}

curl

curl -X POST https://gateway.pipeworx.io/frankfurter/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_timeseries","arguments":{"start_date":"2024-01-01","end_date":"2024-03-31","base":"USD","symbols":"EUR"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_timeseries', {
  "start_date": "2024-01-01",
  "end_date": "2024-03-31",
  "base": "USD",
  "symbols": "EUR"
});

More examples

{
  "start_date": "2023-06-01",
  "end_date": "2023-12-31",
  "base": "EUR",
  "symbols": "GBP,JPY,CHF"
}

Response shape

Always returns: base, start_date, end_date, rates

FieldTypeDescription
basestringBase currency code
start_datestringStart date of the time series
end_datestringEnd date of the time series
ratesobjectDaily exchange rates keyed by date then currency
Full JSON Schema
{
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "Base currency code"
    },
    "start_date": {
      "type": "string",
      "description": "Start date of the time series"
    },
    "end_date": {
      "type": "string",
      "description": "End date of the time series"
    },
    "rates": {
      "type": "object",
      "description": "Daily exchange rates keyed by date then currency",
      "additionalProperties": {
        "type": "object",
        "additionalProperties": {
          "type": "number"
        }
      }
    }
  },
  "required": [
    "base",
    "start_date",
    "end_date",
    "rates"
  ]
}

Connect

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

{
  "mcpServers": {
    "frankfurter": {
      "url": "https://gateway.pipeworx.io/frankfurter/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026