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
| Name | Type | Required | Description |
|---|---|---|---|
start_date | string | yes | Start date in YYYY-MM-DD format |
end_date | string | yes | End date in YYYY-MM-DD format |
base | string | no | Base currency code (default “EUR”) |
symbols | string | no | Comma-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
| Field | Type | Description |
|---|---|---|
base | string | Base currency code |
start_date | string | Start date of the time series |
end_date | string | End date of the time series |
rates | object | Daily 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.