anzsco-mcp

anzsco-mcp

Enables AI assistants to search and explore Australian occupation codes (ANZSCO), visa pathways, state nominations, and SkillSelect invitation round data.

Category
Visit Server

README

anzsco-mcp

MCP Cloudflare Workers License: MIT

Live endpoint: https://mcp.anzsco.com.au/ — no auth required, no install needed.

Model Context Protocol (MCP) server for anzsco.com.au — lets AI assistants search and explore Australian occupation codes (ANZSCO), visa pathways, state nominations, and the latest SkillSelect invitation round data.

Built as a Cloudflare Worker — stateless, globally distributed, free-tier friendly.


What it does

Australian skilled migration requires matching a job role to an ANZSCO occupation code. The right code determines:

  • Which visa subclasses you can apply for (189 / 190 / 491 / 482 / 186 / 494)
  • Which states and territories can nominate you
  • Which skills assessment authority assesses your qualifications
  • Your SkillSelect points and invitation probability

This MCP server exposes all of that as 8 AI-callable tools, so Claude (and other AI assistants) can answer questions like:

  • "Can a .NET developer apply for visa 189?"
  • "What ANZSCO code is a React developer?"
  • "Does NSW nominate civil engineers for subclass 190?"
  • "What was the latest SkillSelect points cutoff?"

8 Tools

Tool Description Example
search_occupations Fuzzy search by job title or technology. Handles synonyms — .net developer → 261312, react developer → 261212, python data scientist → 224114 query: ".net developer"
get_occupation Full occupation detail: title, ANZSCO group, skills assessment authority, occupation lists (MLTSSL/STSOL/ROL), eligible visa subclasses code: "261312"
get_visa_pathway Occupation + visa eligibility combined — is this code on the skills list? What's the assessment pathway? code: "261312", subclass: "189"
get_state_nomination Does a given state currently nominate this occupation? Points bonus (+5 for 190, +15 for 491) code: "261312", stateCode: "NSW"
get_latest_skillselect_round Most recent SkillSelect round: date, total invitations, breakdown by subclass, points cutoffs (no params)
search_by_visa All occupations eligible for a given visa subclass subclass: "189"
search_by_state All occupations nominated by a given state stateCode: "VIC"
compare_occupations Side-by-side comparison of 2–5 occupation codes across visas, states, and lists codes: ["261312", "261313", "261212"]

Live Endpoint

https://mcp.anzsco.com.au/
Method Path Purpose
POST / MCP JSON-RPC 2.0 endpoint
GET / Root manifest JSON
GET /.well-known/mcp.json MCP discovery manifest
GET /.well-known/mcp/server-card.json Smithery scanner manifest
GET /tools Human-readable tool catalogue
GET /health Health check

Transport: JSON-RPC 2.0 over HTTP POST. Stateless (no SSE). No authentication required.


Claude Desktop Integration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "anzsco": {
      "transport": {
        "type": "http",
        "url": "https://mcp.anzsco.com.au/"
      }
    }
  }
}

Restart Claude Desktop — you'll see ANZSCO tools available in the tool selector.


curl Examples

MCP_URL="https://mcp.anzsco.com.au"

# Initialize
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","clientInfo":{"name":"test","version":"1.0"},"capabilities":{}}}' | jq .

# List tools
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' | jq .result.tools[].name

# Search: .net developer
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search_occupations","arguments":{"query":".net developer"}}}' | jq .

# Get full details for 261312
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":4,"method":"tools/call","params":{"name":"get_occupation","arguments":{"code":"261312"}}}' | jq .

# Visa pathway: can 261312 apply for 189?
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":5,"method":"tools/call","params":{"name":"get_visa_pathway","arguments":{"code":"261312","subclass":"189"}}}' | jq .

# Latest SkillSelect round
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":6,"method":"tools/call","params":{"name":"get_latest_skillselect_round","arguments":{}}}' | jq .

# All occupations eligible for visa 491
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":7,"method":"tools/call","params":{"name":"search_by_visa","arguments":{"subclass":"491","limit":20}}}' | jq .

# Compare developer codes
curl -s -X POST "$MCP_URL/" -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":8,"method":"tools/call","params":{"name":"compare_occupations","arguments":{"codes":["261312","261313","261212"]}}}' | jq .

Quick Reference: Common ANZSCO Codes

Technology / Role ANZSCO Code Title
.NET / C# developer 261312 Developer Programmer
Java / backend engineer 261313 Software Engineer
React / Vue / frontend 261212 Web Developer
Python / data scientist 224114 Data Scientist
DevOps / Kubernetes 261316 DevOps Engineer
iOS / Android mobile 261312 Developer Programmer
Civil engineer 233512 Civil Engineer
General practitioner (GP) 253111 General Medical Practitioner
Electrician 341111 Electrician (General)

Deploy Your Own

Prerequisites: Node.js 18+, Wrangler CLI, Cloudflare account.

git clone https://github.com/NaveenSharma/anzsco-mcp.git
cd anzsco-mcp

npm install

# Copy and configure wrangler
cp wrangler.toml.example wrangler.toml
# Edit wrangler.toml — set your account_id

npm run deploy

The Worker fetches live data from https://anzsco.com.au/api/ with a 5-minute Cloudflare edge cache. No environment variables or secrets required.


Data Sources

Data Source Cache
ANZSCO occupation records https://anzsco.com.au/api/anzsco/ 5 min CF edge
SkillSelect rounds https://anzsco.com.au/api/skillselect/rounds/latest 5 min CF edge
Tech synonyms mapping Bundled in src/synonyms.ts N/A (in-memory)
State nominations https://anzsco.com.au/api/anzsco/ 5 min CF edge

Architecture

AI Client (Claude, etc.)
    │ POST / (JSON-RPC 2.0)
    ▼
Cloudflare Worker (this repo)
    │ fetch with CF edge cache (5 min TTL)
    ▼
anzsco.com.au API
    │
    ▼
ANZSCO database + SkillSelect data
  • Stateless — no persistent storage in the Worker
  • No auth — public read-only occupation reference data
  • Globally distributed — served from 300+ Cloudflare PoPs
  • MCP spec: 2024-11-05

Listings


License

MIT — see LICENSE.

Data sourced from publicly available ANZSCO and Department of Home Affairs records. Not affiliated with the Australian Bureau of Statistics or the Department of Home Affairs.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured