chart_data
Pack: stocktwits · Endpoint: https://gateway.pipeworx.io/stocktwits/mcp
“Chart data for [ticker]” / “sparkline data for [stock]” — price sparkline data for a ticker from StockTwits. Use for embedded thumbnail charts; prefer dedicated finance packs (yahoo-finance, alphavantage) for serious price analysis.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | |
period | string | no |
Example call
Arguments
{
"symbol": "AAPL"
}
curl
curl -X POST https://gateway.pipeworx.io/stocktwits/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"chart_data","arguments":{"symbol":"AAPL"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('chart_data', {
"symbol": "AAPL"
});
More examples
{
"symbol": "GME",
"period": "1d"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"stocktwits": {
"url": "https://gateway.pipeworx.io/stocktwits/mcp"
}
}
}
See Getting Started for client-specific install steps.