quiver_insiders
Pack: quiver · Endpoint: https://gateway.pipeworx.io/quiver/mcp
SEC insider (Form 4) transactions for
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ticker | string | yes | Stock ticker to look up insider transactions for, e.g. “AAPL” (required) |
_apiKey | string | yes | Quiver Quantitative API key |
Example call
Arguments
{
"ticker": "AAPL",
"_apiKey": "your-quiver-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/quiver/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"quiver_insiders","arguments":{"ticker":"AAPL","_apiKey":"your-quiver-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('quiver_insiders', {
"ticker": "AAPL",
"_apiKey": "your-quiver-api-key"
});
More examples
{
"ticker": "TSLA",
"_apiKey": "your-quiver-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"quiver": {
"url": "https://gateway.pipeworx.io/quiver/mcp"
}
}
}
See Getting Started for client-specific install steps.