Skip to main content
Glama
AnthonyPuggs

AusEcon MCP for ABS | RBA | APRA data

CI Integration PyPI Python Transport License

ausecon-mcp-server MCP server

Documentation  ·  Getting started  ·  Tool reference  ·  Changelog


Why this exists

Australian economic data is authoritative but awkward to reach — scattered across portals, formats, and identifiers you have to memorise. ausecon is the open, free, no-API-key way to put it in front of any AI assistant: every series comes back fresh and fully source-traceable, stamped with its provenance, in one consistent shape (metadata · series · observations) across all three regulators. Ask for “the cash rate” or “quarterly real GDP growth” and get research-grade data back without leaving the conversation.

Related MCP server: ABS MCP Server

What you get

Data sources

Source

Coverage

ABS  ·  Australian Bureau of Statistics

National accounts, prices, labour force, population

RBA  ·  Reserve Bank of Australia

Cash rate, monetary & financial aggregates, exchange rates

APRA  ·  Aust. Prudential Regulation Authority

ADI & insurer statistics, with release-cadence estimates

Try it instantly (no install)

Prefer not to install anything? A hosted, read-only, no-API-key instance speaks MCP over Streamable HTTP at:

https://mcp.auseconmcp.com/mcp

Point any MCP client that supports remote (Streamable HTTP) servers at that URL — for example, in Claude Code:

claude mcp add --transport http ausecon https://mcp.auseconmcp.com/mcp

The hosted instance may take a few seconds to wake on the first request. The previous https://ausecon-mcp-server.onrender.com/mcp URL continues to work and points at the same instance.

Install

The package lives on PyPI and is designed to be launched on demand by your MCP client via uvx:

uvx ausecon-mcp-server

The server speaks MCP over standard input/output. Launched on its own, it simply waits for a client to connect.

Connect your client

claude mcp add --transport stdio ausecon -- uvx ausecon-mcp-server
codex mcp add ausecon -- uvx ausecon-mcp-server

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ausecon": {
      "command": "uvx",
      "args": ["ausecon-mcp-server"]
    }
  }
}

Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):

{
  "mcpServers": {
    "ausecon": {
      "command": "uvx",
      "args": ["ausecon-mcp-server"]
    }
  }
}

Or paste this one-click link into your browser:

cursor://anysphere.cursor-deeplink/mcp/install?name=ausecon&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyJhdXNlY29uLW1jcC1zZXJ2ZXIiXX0=

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "ausecon": {
      "command": "uvx",
      "args": ["ausecon-mcp-server"],
      "env": {}
    }
  }
}

Install in VS Code

Or add to .vscode/mcp.json (workspace) or your user mcp.json:

{
  "servers": {
    "ausecon": {
      "type": "stdio",
      "command": "uvx",
      "args": ["ausecon-mcp-server"]
    }
  }
}

Hosting it instead? smithery.yaml and Dockerfile.smithery ship a Streamable HTTP deployment at /mcp. See the Smithery guide.

A quick taste

Find the concept you want, then ask for the series:

list_economic_concepts(query="cash rate")

get_economic_series(
    concept="cash_rate_target",
    start="2020-01-01",
)

Need a transparent, formula-based indicator? Call the derived surface directly:

get_derived_series(concept="real_cash_rate", last_n=12)

Connected to an AI agent, you can skip the syntax entirely — ask for “quarterly real GDP growth” and it maps your request to the right tool calls for you.

Develop locally

Python 3.12 is recommended; the CI matrix supports 3.10+.

uv sync --python 3.12
uv run pytest
uv run ruff check src tests scripts

auseconmcp.com  ·  Issues  ·  MIT Licence  ·  Made for the Australian data community

Install Server
A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
5dResponse time
2dRelease cycle
41Releases (12mo)
Commit activity
Issues opened vs closed

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    An MCP server that provides AI assistants with access to Australian Bureau of Statistics data through the SDMX-ML API, enabling statistical data querying and analysis.
    Last updated
    1
    9
  • A
    license
    A
    quality
    C
    maintenance
    MCP server for the Brazilian Central Bank (BCB/SGS) public API, providing access to 18,000+ economic time series. Includes a curated catalog of 150+ popular indicators organized in 12 categories: interest rates (Selic), inflation (IPCA, IGP-M, INPC), exchange rates (USD, EUR), GDP, employment, credit, fiscal data, and more. Supports historical queries with date filters, latest values, metadata loo
    Last updated
    8
    114
    6
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Economic data MCP server that connects FRED, BLS, BEA, IMF, World Bank, and ECB to any MCP-compatible client, with built-in methodology rules to guide LLMs in selecting appropriate economic indicators.
    Last updated

View all related MCP servers

Related MCP Connectors

  • MCP server for US Treasury Fiscal Data — debt, interest rates, exchange rates, and spending.

  • DBnomics MCP — meta-aggregator over 80+ stats providers

  • MCP server for live, sourced Brazilian public data from the official IBGE APIs.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AnthonyPuggs/ausecon-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server