Use the ausdata MCP server in Cursor

Cursor supports MCP via the same config. The setup takes a minute.

Steps

  1. 1Open Cursor settings.
  2. 2Add the MCP server URL.
  3. 3Reload.

Code

cURL
curl https://api.ausdata.io/.well-known/mcp.json \
  -H "Authorization: Bearer YOUR_KEY"
Python
import requests
r = requests.get(
    "https://api.ausdata.io/.well-known/mcp.json",
    headers={"Authorization": "Bearer YOUR_KEY"},
)
print(r.json())
JavaScript
const r = await fetch("https://api.ausdata.io/.well-known/mcp.json", {
  headers: { Authorization: "Bearer YOUR_KEY" },
});
console.log(await r.json());

Watch out for

  • Cursor only loads MCP servers on full restart in some versions.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key