symbol_stream
Pack: stocktwits · Endpoint: https://gateway.pipeworx.io/stocktwits/mcp
“What are people saying about [ticker]” / “StockTwits sentiment for [TICKER]” / “retail / WSB / Twitter chatter on [stock]” / “Stocktwits feed for [symbol]” — recent messages mentioning a ticker on StockTwits (the largest finance-focused social-media platform). Returns user posts with bullish/bearish sentiment tags, timestamps, like counts. Use for retail-investor sentiment, social-volume tracking, contrarian signal.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | |
since | number | no | |
max | number | no | |
limit | number | no | |
filter | string | no |
Example call
Arguments
{
"symbol": "TSLA"
}
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":"symbol_stream","arguments":{"symbol":"TSLA"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('symbol_stream', {
"symbol": "TSLA"
});
More examples
{
"symbol": "NVDA",
"limit": 50,
"filter": "bullish"
}
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.