Blog.
Discussions on Short Positions, Options, and more on the Australian Stock Exchange (ASX)
Paste one URL into Claude or ChatGPT and it can read ASIC short positions, house prices, economic series and politicians' declared interests — no API key, no scraping, no setup. Here's what we built and the decisions behind it.

Ask Your AI About the ASX
There is a particular kind of frustration in asking an AI assistant about the Australian market. It will answer confidently. It will also be working from whatever it absorbed in training, which for ASIC short position data means numbers that are months or years stale, if it has them at all. Ask it which ASX stocks are most shorted and you get a plausible-sounding list that is quietly wrong.
We have fixed that, for any assistant that speaks the Model Context Protocol.
https://api.shorted.com.au/mcp
Paste that into Claude, ChatGPT, Cursor, or anything else speaking MCP, and it gains 24 read-only tools over everything Shorted tracks: ASIC short positions and their history, prices, director trades, peer comparison, a screener, news, our published weekly reports, Australian house prices and suburb profiles, ABS and RBA economic series, and the federal register of politicians' interests.
No API key. No account. No scraping. No setup step at all.
The one-line version
Claude Code:
claude mcp add --transport http shorted https://api.shorted.com.au/mcp
Claude Desktop — add to claude_desktop_config.json:
{
"mcpServers": {
"shorted": {
"type": "http",
"url": "https://api.shorted.com.au/mcp"
}
}
}
ChatGPT — add a custom MCP connector with that URL in Developer mode.
That is the whole setup. Then ask it things:
"Which ASX stocks have the highest short interest right now, and how has DroneShield's position moved over the last six months?"
"Compare short interest in the big four banks and tell me if anything has changed since June."
"What's the median asking price in Brunswick, and which federal MPs declare property in Victoria?"
The assistant calls the tools, gets live data, and answers from it.
Why MCP rather than "just use the API"
We already have a public HTTP API and an OpenAPI description. Those are good for building software. They are bad for a conversation, because someone has to write the glue: read the spec, pick endpoints, handle auth, shape the response into something the model can reason about.
MCP removes the glue. The server describes its own tools, in schemas the client validates against, so the model discovers what it can ask for and how. The difference is between handing someone a reference manual and handing them a colleague who already knows the dataset.
It also means we can do the hard part for the model. Short interest is a genuinely easy thing to get wrong: it is published by ASIC with a four trading day delay, it measures positioning rather than trading flow, and a raw percentage means very little without knowing days-to-cover and the size of the free float. Our tools return the figure and the framing — every response carries its source and its lag, so a model summarising it has the caveats in front of it rather than having to infer them.
What we deliberately did not build
No write tools. There are none, and none are planned. Everything is read-only, which means the worst outcome of a confused agent is a wrong answer rather than a mutated record.
No paywall on first contact. Every one of the 24 tools works anonymously. We think a data server that demands an account before it will tell you anything is a data server nobody adopts, so authentication raises your limits and identifies you — it is not a gate.
No republishing of things we do not own. Individual property listings, addresses and agents never leave our system; the crawl licence permits derived aggregates only, so the housing tools return counts and medians. The register of politicians' interests carries what is held, never how much — there is no amount column anywhere in that subsystem, by design. Parliamentary text is reproduced verbatim or not at all, because the source licence forbids rewriting it.
Those constraints are in the tool descriptions and in a shorted://catalog/coverage resource the model can read, so an assistant can tell you why a gap exists rather than hallucinating something into it.
Signing in, if you want to
OAuth 2.1 is supported, and there is nothing to configure. Add the URL, and a client that wants a higher ceiling discovers the flow by itself — it reads our metadata documents, registers itself, opens a browser once, and you approve a screen that names the application, the exact address your access will be delivered to, and what it will be able to read. Nothing is issued until you click approve.
Building that was more interesting than it sounds, and two decisions are worth writing down.
A credential is not consent. Our first cut authenticated the approval step with a sign-in token. That proves someone holds a credential. It does not prove a human looked at a screen and agreed — and once we allowed applications to register themselves automatically (which Claude and ChatGPT both rely on), the gap became a real one: anyone holding a stolen token could register their own application, point it at their own address, and quietly mint themselves durable access without a human ever seeing anything.
So approval now produces a consent ticket: a single-use, two-minute, server-side record that can only be created by the consent screen itself, and which is bound to the exact application, address, and cryptographic challenge you were shown. The authorisation step re-checks every one of those bindings. Approving "Claude Desktop" cannot be spent on anything else.
Ephemeral ports are not a security boundary. Desktop applications receive their callback on a local port they open at the moment you start the flow — and they pick a different one next time, deliberately, because binding a fixed port is what would be insecure. Our first implementation compared the callback address as an exact string, which meant it worked once and then failed on every subsequent connection with an error that looked like our bug in someone else's logs. We now follow RFC 8252 §7.3 and ignore the port for loopback addresses — and only the port, and only for loopback. Everything else still has to match exactly.
Honesty about limits
There is a rate limit, and we would rather tell you exactly what it is than let you find out.
Today the ceiling in force is a per-IP limit at our edge: 60 requests per 10 seconds, 300 per minute for anonymous callers. A normal conversation — even one where the model fires off a dozen tool calls to compare five companies — is comfortably inside that. A script in a tight loop is not.
We have also built per-caller tier quotas, counted per tool call rather than per request, with the session handshake free so a client is never throttled before it has done anything useful. Those are not switched on yet, and rather than publish numbers we do not enforce, the server tells you which is true: authentication.rateLimits.enforced in our tool catalog is read from the running configuration, so it cannot go stale.
That may seem like a strange thing to advertise. We think publishing a ceiling you do not apply is the same defect as enforcing one you never published — we have made the second mistake before, and the fix was to derive the published numbers from the code that enforces them rather than writing them down twice.
Under the hood, briefly
The server is written in Go and runs in the same process as our main API, speaking protocol version 2026-07-28 and negotiating back to 2024-11-05 for older clients. Its tool catalog is generated from the server's own registry — which means a tool cannot be advertised anywhere without being registered, a small discipline that came directly from an earlier embarrassment where our published documentation listed four tools, three of which no longer existed under those names.
Everything an agent needs to find us is machine-readable:
- Tool catalog:
api.shorted.com.au/mcp/catalog.json - Server card:
shorted.com.au/.well-known/mcp/server-card.json - Connection guide:
shorted.com.au/docs/mcp.md - Site overview for agents:
shorted.com.au/llms.txt
The caveats, stated plainly
Short interest is T+4. ASIC publishes with a four trading day delay, so the most recent figure any tool returns is already several days old. It is also short interest — positioning — not short-sale flow. Anything that tells you what shorts did today is not this dataset.
Nothing here is financial advice. An AI assistant summarising short interest data is a research aid. It is confident by construction, and confidence is not accuracy.
It is new. If a tool returns something that looks wrong, we would genuinely like to know: [email protected].
Add it, ask it something, and see how it goes.
https://api.shorted.com.au/mcp
More Stories
Activist Short Sellers on the ASX: The Major Campaigns and What Happened Next
Glaucus, Bonitas, VGI. A short report can take a third off an ASX company in a session, and Australian outcomes have run the full range from vindication to a Supreme Court finding of misleading conduct. Here's what activist shorting is, what ASIC's INFO 255 asks of everyone involved, and how the landmark campaigns actually resolved.

ASX Reporting Season and Short Sellers: What August Does to Crowded Shorts
Australian reporting season compresses hundreds of results into a few weeks in February and August. For heavily shorted stocks it is the window where a thesis either gets confirmed or gets run over, and ASIC's four-day reporting lag means you watch the covering arrive after the fact. Here is how the season works and how to read short data through it.

The Most Shorted ASX Sectors: Where Short Interest Concentrates and Why
Short interest on the ASX is not spread evenly. It piles into materials, energy and a handful of consumer and healthcare names, and it rotates as commodity cycles turn. Here's how sector-level short interest is actually constructed, what drives it, and how to read the industry view without being misled by a handful of microcaps.

How Much Does It Cost to Short an ASX Stock? Borrow Fees, Margin and Dividends Explained
Shorting an ASX stock costs more than brokerage. Borrow fees accrue daily, margin ties up capital, and the short seller pays the dividend to the lender. Here's how each cost is calculated, what the ranges look like in Australia, and why the borrow rate you're quoted is broker-specific.

Days to Cover on the ASX: What the Short Interest Ratio Actually Tells You
Days to cover measures how long the shorts would need to exit at normal trading volume. It's the metric that separates a crowded short you can walk away from and one that's trapped. Here's the formula, ASX-calibrated bands, and what ASIC's T+4 reporting does to the calculation.

Do Short Sellers Actually Know Something? What the Evidence Says
Short selling is expensive, risky and asymmetric, which is why the positions that survive tend to be well researched. The academic record broadly agrees that short sellers are informed. But the strongest results are about the whole market rather than individual stocks, and the cross-sectional evidence has a robustness problem worth understanding before you trade on it.

How to Short a Stock in Australia: Brokers, CFDs, Options and Inverse ETFs Compared
There are four practical ways to take short exposure to Australian shares, and they differ far more in risk and structure than in headline cost. Here's how covered short selling works under the Corporations Act, what ASIC's CFD rules actually restrict, where options and inverse ETFs fit, and how to check where the crowd already is before you commit.

ASX Short Squeeze Candidates: How to Find Them With Live Data
Ten ASX stocks carry short interest above 10% of issued capital right now — but crowded shorts alone don't make a squeeze. Here's the four-part checklist, the live screen from ASIC data, and what Zip and Pilbara Minerals teach about how squeezes actually unfold.

Hormuz, Round Two: The ASX Energy Short Rotation That Beat the News
Two weeks after we mapped ASX energy shorts, the tape rotated: Beach bears banked profits, Karoon bears reloaded, and Santos shorts tripled off a record low — all before US strikes on Iran reignited the oil risk premium.

The 10 Most Shorted ASX Stocks — July 2026
Lotus Resources tops the ASX short list at 22.81% of issued capital — shorts have added 12.4pp in 90 days. Three uranium names, Domino's, DroneShield, Telix and Flight Centre fill out July's ten most crowded bear positions, from official ASIC data.

The Oil Shock Short Sellers Ignored — Except for One ASX Stock
The Iran war sent Brent to US$120+ and back. Yet ASX short sellers didn't pile into oil — they piled into Beach Energy. Here's what the short data reveals about how the pros really played the 2026 oil shock.

Shorted 2026: AI-Powered Reports, Redesigned Dashboard, and More
A look at everything new on Shorted — from AI-generated weekly reports and financial highlights to a completely redesigned dashboard experience.

Institutional vs Retail Short Selling: Who's Driving Bearish Bets on the ASX?
Hedge funds, pension funds, and retail traders all short the ASX — but their strategies, timeframes, and impact are vastly different. Here's how to tell them apart using ASIC data.

Short Selling vs Long Investing: Understanding Both Sides of the Market
Every trade has two sides. Learn the fundamental differences between short selling and traditional long investing, the risk profiles of each, and how understanding both makes you a better investor.

A Beginner's Guide to Using Short Selling Data in Your Investment Research
New to short interest data? This plain-English guide explains what short selling data means, why it matters, and how to start using it in your ASX investment research today.

Short Squeezes Explained: How They Happen on the ASX and What to Watch For
What triggers a short squeeze on the ASX? Learn the mechanics behind short squeezes, famous Australian examples, and how to spot the warning signs using ASIC data.

How to Read ASX Short Interest Data: A Complete Guide for Investors
Learn how to interpret and analyze ASX short interest data like a pro. This comprehensive guide covers reading ASIC reports, understanding metrics, and making informed investment decisions.

What are Short Positions in Australia: Complete Guide to ASX Short Selling
Complete guide to short selling in Australia - from ASIC regulations to market impact. Learn how short positions work on the ASX with historical context and expert analysis.

Unveiling Short Positions on the ASX: Introducing Shorted
Explore how Shorted brings clarity to short selling activities in the Australian stock market.




















