fca_short_positions
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_short_positions for the schema, then POST the same URL with its arguments for the data.
Current FCA-disclosed net short position(s) for an issuer, from the daily “aggregated-current-net-short-positions” file (fca.org.uk). Data is AGGREGATED AND ANONYMISED PER ISSUER under the UK Short Selling Regulations 2025 — one row per issuer, no position-holder names. Filter by issuer name (substring, case-insensitive) and/or ISIN; at least one is required. Example: fca_short_positions({ issuer: “Kingfisher” }) or fca_short_positions({ isin: “GB0033195214” }).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
issuer | string | no | Issuer/company name, or a substring of it (case-insensitive), e.g. “Kingfisher”. |
isin | string | no | Exact ISIN, e.g. “GB0033195214”. |
Example call
Arguments
{
"isin": "GB0033195214"
}
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_short_positions","arguments":{"isin":"GB0033195214"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fca_short_positions', {
"isin": "GB0033195214"
});
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.