MCP (Model Context Protocol) server for Australian address search and validation powered by Addressr.
Search, validate, and retrieve detailed Australian address data from the Geocoded National Address File (G-NAF) — directly from your AI assistant.
Sign up at RapidAPI to get your API key.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"addressr": {
"command": "npx",
"args": ["-y", "@mountainpass/addressr-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}claude mcp add addressr -- npx -y @mountainpass/addressr-mcpSet RAPIDAPI_KEY in your environment.
Add to .cursor/mcp.json:
{
"mcpServers": {
"addressr": {
"command": "npx",
"args": ["-y", "@mountainpass/addressr-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Add to .vscode/mcp.json:
{
"servers": {
"addressr": {
"command": "npx",
"args": ["-y", "@mountainpass/addressr-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Search Australian addresses by street, suburb, or postcode. Returns up to 8 results per page with standard address format, relevance score, and property ID (PID).
Parameters:
q(required) — Search query, e.g. "1 george st sydney", "2000", "pyrmont nsw"page(optional) — Page number for paginated results
Get full address details by property ID (PID). Returns geocoding (lat/long), structured components (street, suburb, state, postcode, unit/flat), and confidence score.
Parameters:
addressId(required) — G-NAF Property ID from search results, e.g. "GANSW710280564"
Check API service status. Returns version, timestamp, and health status.
Address data is sourced from the Geocoded National Address File (G-NAF), Australia's authoritative address database maintained by Geoscape Australia.
Apache-2.0