user_stream
Pack: stocktwits · Endpoint: https://gateway.pipeworx.io/stocktwits/mcp
Recent StockTwits posts from a specific user (by user_id string). Supports since/max cursor pagination and a limit cap. Returns messages with sentiment tags, timestamps, and ticker cashtags. Use to follow a particular trader’s commentary stream.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
user_id | string | yes | |
since | number | no | |
max | number | no | |
limit | number | no |
Example call
Arguments
{
"user_id": "12345"
}
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":"user_stream","arguments":{"user_id":"12345"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('user_stream', {
"user_id": "12345"
});
More examples
{
"user_id": "67890",
"limit": 25
}
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.