Asic MCP server
Query ASIC registers in plain English — advisers, licensees, banned persons, liquidators.
0 stars
Reviews
Write oneNobody has reviewed Asic yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Asic tools (5)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
describe_datasetDescribe a dataset's filterable dimensions, returnable measures, and source.
get_datalatestlist_curatedList every curated dataset ID in this version of asic-mcp.
search_datasetsFuzzy-search the curated ASIC dataset catalogue.
Public scan report
scanner v0.1.9 · 2026-09-23 · same rubric, same numbers if you re-run it
- Code scan27 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 38 days ago12/15
- Maintainer identitynamespace and repository owner differ; GitHub account older than a year; website matches verified namespace7/10
What the publisher says
From the Asic repository's README, as published. We do not edit it. Read it on GitHub
asic-mcp
mcp-name: io.ausdata/asic-mcp
MCP server for Australian Securities and Investments Commission registers. Plain-English access to the Financial Advisers Register, AFS Licensees, AFS Authorised Representatives, Credit Licensees, Banned & Disqualified Persons and Organisations, and Registered Liquidators — every one updated weekly by ASIC and served via data.gov.au.
Hosted access? For cross-source queries, webhooks, an always-on REST API, and a uniform response envelope across all 9 sources, see ausdata.io — free tier available (500 calls/mo, no card).
"Is Jane Smith a registered financial adviser?"
"Find every AFS licensee in NSW with 'Westpac' in the name."
"List all banned persons added since 2024-01-01."
"Who's the registered liquidator for KordaMentha?"
"Which credit licensees were suspended last year?"Sister to abs-mcp (Australian Bureau of Statistics), rba-mcp (Reserve Bank of Australia), ato-mcp (Australian Taxation Office), apra-mcp (Australian Prudential Regulation Authority), aihw-mcp (Australian Institute of Health and Welfare), and au-weather-mcp (Australian weather). All seven together cover the macro / regulator / health / tax / climate layer of Australian official data.
Install
# Run on demand via uvx (recommended)
uvx --upgrade asic-mcp
# Or install permanently
pip install asic-mcpClaude Desktop
Add to claudedesktopconfig.json:
{
"mcpServers": {
"asic": { "command": "uvx", "args": ["--upgrade", "asic-mcp"] }
}
}Why --upgrade? uvx asic-mcp (without the flag) uses whatever wheel is cached and never adopts new PyPI releases on its own. --upgrade makes uvx check PyPI on each launch and pull a newer release if one exists. To verify which version is currently serving you, look at the server_version field on any DataResponse.
Claude Code / Cursor
claude mcp add asic --command uvx --args -- --upgrade asic-mcpAuto-updating data
Beyond the wheel-level --upgrade, the server has a second auto-update path inside the data layer: every register snapshot on data.gov.au is reissued each week (some monthly) at a stable resource UUID. asic-mcp resolves that UUID via data.gov.au's CKAN API at fetch time and uses the freshest match. Hard-coded YAML URLs are the safe fallback if CKAN discovery fails. You do not need to wait for a new wheel release to get new weekly data — the 24-hour cache TTL means a fresh snapshot lands within a day. Force-refresh by deleting ~/.asic-mcp/cache.db.
What it exposes
Five tools, all plain-English in, structured out:
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
claude mcp add asic-mcp -- uvx asic-mcp
Asic: common questions
- Is Asic MCP server safe?
- Yes, by our scan: it is graded A (86/100). Read the Asic safety report
- How do I install Asic?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Asic need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Asic maintained?
- The last commit was 39 days ago (2026-08-16). The latest release is v0.6.21.