time_series
Pack: twelvedata · Endpoint: https://gateway.pipeworx.io/twelvedata/mcp
Twelve Data OHLC time series for a stock, forex, crypto, or ETF symbol. Requires symbol and interval (e.g. ‘1min’, ‘1h’, ‘1day’). Returns timestamped open/high/low/close + volume.
Example call
Arguments
{
"symbol": "AAPL",
"interval": "1h"
}
curl
curl -X POST https://gateway.pipeworx.io/twelvedata/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"time_series","arguments":{"symbol":"AAPL","interval":"1h"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('time_series', {
"symbol": "AAPL",
"interval": "1h"
});
More examples
{
"symbol": "EURUSD",
"interval": "1d"
}
Response shape
| Field | Type | Description |
|---|---|---|
status | string | Response status |
code | number | Response code |
message | string | Response message |
Full JSON Schema
{
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "Response status"
},
"code": {
"type": "number",
"description": "Response code"
},
"message": {
"type": "string",
"description": "Response message"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"twelvedata": {
"url": "https://gateway.pipeworx.io/twelvedata/mcp"
}
}
}
See Getting Started for client-specific install steps.