Getting Started
Requirements
Section titled “Requirements”- Python
3.10+. uvfor theuvxlauncher.- An MCP client — local
stdiofor the installed server, or a remote (Streamable HTTP) client for the hosted “try it instantly” option below.
Try it instantly (no install)
Section titled “Try it instantly (no install)”A hosted, read-only, no-API-key instance is available over Streamable HTTP at
https://ausecon-mcp-server.onrender.com/mcp. Point any MCP client that supports remote servers
at that URL, or in Claude Code:
claude mcp add --transport http ausecon https://ausecon-mcp-server.onrender.com/mcpThe hosted instance may take a few seconds to wake on the first request.
Install
Section titled “Install”The package is published to PyPI and is intended to be launched on demand:
uvx ausecon-mcp-serverOn first use, uvx downloads the package into an isolated cached environment. The process then
waits for an MCP client to connect over standard input/output.
Connect your client
Section titled “Connect your client”ausecon speaks MCP over stdio, launched on demand with uvx.
Claude Code
claude mcp add --transport stdio ausecon -- uvx ausecon-mcp-serverCodex
codex mcp add ausecon -- uvx ausecon-mcp-serverClaude Desktop — add to claude_desktop_config.json:
{ "mcpServers": { "ausecon": { "command": "uvx", "args": ["ausecon-mcp-server"] } }}Cursor — add to ~/.cursor/mcp.json, or use the one-click link
Add to Cursor:
{ "mcpServers": { "ausecon": { "command": "uvx", "args": ["ausecon-mcp-server"] } }}Windsurf — add to ~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "ausecon": { "command": "uvx", "args": ["ausecon-mcp-server"], "env": {} } }}VS Code — add to .vscode/mcp.json, or use the one-click link
Install in VS Code:
{ "servers": { "ausecon": { "type": "stdio", "command": "uvx", "args": ["ausecon-mcp-server"] } }}Recommended workflow
Section titled “Recommended workflow”- Use
list_economic_conceptsfor ordinary economic requests such as GDP, CPI, unemployment, wages, cash rate, credit, exchange rates, or yields. - Use
get_economic_serieswith the selected concept. - Use
get_derived_seriesfor transparent formula-based indicators such as real cash rate, yield-curve slope, real wage growth, mortgage-rate spreads, or credit-to-GDP. - Use
search_datasets,list_catalogue,get_abs_dataset_structure,get_abs_data,get_rba_table, andget_apra_datawhen you need source-native ABS/RBA/APRA control.
If you are using the server through an AI agent, see Prompting AI Agents for examples of natural-language requests and the MCP tool calls they usually trigger.
First retrieval pattern
Section titled “First retrieval pattern”list_economic_concepts(query="cash rate")get_economic_series( concept="cash_rate_target", start="2020-01-01")Retrieval responses include metadata, series, and observations. Semantic retrievals also
include metadata.semantic, recording the resolved source target and normalised date bounds.
Derived retrievals include metadata.derived, recording the formula, operands, units, alignment
frequency, and alignment method.