Use the ausdata MCP server with Claude Desktop

Add ausdata as an MCP server. Claude can answer questions like what is the current cash rate without you copying values.

Steps

  1. 1Open Claude Desktop config.
  2. 2Add the ausdata MCP entry.
  3. 3Restart Claude.

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

  • Claude Desktop config is JSON. A trailing comma silently breaks everything.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key