fca_largest_shorts
Pack: fca-shorts · Endpoint: https://gateway.pipeworx.io/fca-shorts/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/fca_largest_shorts for the schema, then POST the same URL with its arguments for the data.
The N issuers with the largest currently FCA-disclosed net short positions market-wide, sorted descending by aggregated position %. Reads the same daily “aggregated-current-net-short-positions” file as fca_short_positions — aggregated per issuer, no holder names. Example: fca_largest_shorts({ top_n: 10 }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
top_n | number | no | How many issuers to return, most-shorted first. Default 20, max 100. |
Example call
Arguments
{
"top_n": 5
}
curl
curl -X POST https://gateway.pipeworx.io/fca-shorts/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fca_largest_shorts","arguments":{"top_n":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fca_largest_shorts', {
"top_n": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"fca-shorts": {
"url": "https://gateway.pipeworx.io/fca-shorts/mcp"
}
}
}
See Getting Started for client-specific install steps.