ausecon-mcp-server
MCP server for structured Australian macroeconomic and financial data from the Australian Bureau of Statistics (ABS), the Reserve Bank of Australia (RBA), and the Australian Prudential Regulation Authority (APRA).
README
Australian Economic Data (ABS, RBA & APRA) MCP Server
<!-- mcp-name: io.github.AnthonyPuggs/ausecon-mcp-server -->
ausecon-mcp-server is a Python Model Context Protocol (MCP) server for structured Australian
macroeconomic and financial data from the Australian Bureau of Statistics (ABS), the Reserve Bank
of Australia (RBA), and the Australian Prudential Regulation Authority (APRA).
Version 1.5.0 is the current release line. Transport support is stdio plus Streamable HTTP.
The server exposes ten read-only MCP tools, four read-only MCP resources, eight prompt templates,
70 curated analyst-facing economic and financial concepts through get_economic_series, and nine
transparent derived indicators through get_derived_series.
Documentation
Full user and maintainer documentation is published at auseconmcp.com.
Useful links:
Install
The package is published to PyPI and is intended to
be launched by an MCP client on demand via uvx:
uvx ausecon-mcp-server
The server speaks MCP over standard input/output. When launched manually, it waits for a client to connect.
Client Setup
Claude Desktop:
{
"mcpServers": {
"ausecon": {
"command": "uvx",
"args": ["ausecon-mcp-server"]
}
}
}
Claude Code:
claude mcp add --transport stdio ausecon -- uvx ausecon-mcp-server
Codex:
codex mcp add ausecon -- uvx ausecon-mcp-server
Smithery:
This repository also includes smithery.yaml and Dockerfile.smithery for hosted Smithery custom
container deployment over MCP Streamable HTTP at /mcp. The hosted HTTP entrypoint is
ausecon-mcp-http; local users should keep using the stdio command above unless they are testing a
container deployment. Maintainers can follow the deployment checklist in
docs/smithery-deployment.md.
Basic Workflow
For normal economic concepts, discover the supported concept first:
list_economic_concepts(query="cash rate")
Then retrieve the resolved series:
get_economic_series(
concept="cash_rate_target",
start="2020-01-01"
)
For transparent formula-based indicators, call the derived retrieval surface directly:
get_derived_series(concept="real_cash_rate", last_n=12)
For exact source-native control, use search_datasets, list_catalogue,
get_abs_dataset_structure, get_abs_data, get_rba_table, and get_apra_data.
Development
Python 3.12 is recommended for local development. The package metadata and CI matrix support Python 3.10+.
uv sync --python 3.12 --extra dev
uv run pytest
uv run ruff check src tests scripts
Repository
- Repository: github.com/AnthonyPuggs/ausecon-mcp-server
- Issues: GitHub Issues
- Licence: MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.