legislation-database-search-with-semantic-filtering
Searches ANZ (Australia and New Zealand) legislation databases using keyword and semantic matching against indexed legislative documents. The MCP tool exposes search endpoints that query a pre-indexed legislation corpus, returning ranked results with metadata (act name, section, jurisdiction, effective date). Implementation likely uses full-text search with optional vector embeddings for semantic relevance, enabling both exact phrase matching and conceptual legislation discovery across multiple jurisdictions.
Unique: Purpose-built MCP integration for ANZ legislation specifically, enabling Claude and other MCP clients to directly query authoritative legislative databases without external API calls or web scraping, with jurisdiction-aware filtering for Australian states and New Zealand
vs alternatives: More direct and jurisdiction-specific than generic legal document search tools; tighter integration with LLM agents via MCP protocol compared to REST API wrappers
jurisdiction-aware-legislation-filtering
Filters and scopes legislation search results by jurisdiction (Australian states: NSW, VIC, QLD, WA, SA, TAS, ACT, NT; New Zealand; and Commonwealth). The tool maintains jurisdiction metadata for each legislative document and allows queries to be constrained to specific jurisdictions or cross-jurisdictional comparisons. Implementation uses jurisdiction tags in the indexed corpus and applies server-side filtering before returning results, avoiding irrelevant legislation from other regions.
Unique: Implements jurisdiction-aware filtering as a first-class feature in the MCP interface, allowing Claude and agents to naturally constrain searches to specific ANZ regions without manual post-processing or external jurisdiction lookup services
vs alternatives: More granular than generic legislation APIs that treat all ANZ as a single corpus; avoids irrelevant cross-jurisdiction noise that generic legal search engines produce
legislation-text-retrieval-with-section-parsing
Retrieves the full text of specific legislative provisions (acts, sections, subsections, schedules) with structured parsing of section hierarchies and cross-references. The tool parses legislation documents into a hierarchical structure (Act > Part > Division > Section > Subsection) and returns requested sections with their full context, including related sections and amendment history. Implementation uses regex or AST-based parsing to identify section boundaries and maintain parent-child relationships in the document structure.
Unique: Implements section-level parsing and hierarchical retrieval as a native MCP capability, allowing agents to request specific legislative provisions by section number and receive structured, contextual results without manual document navigation
vs alternatives: More precise than full-document retrieval; avoids context bloat by returning only requested sections with their hierarchy, reducing token consumption in LLM agents compared to passing entire acts
cli-based-legislation-lookup
Provides a command-line interface for searching and retrieving ANZ legislation without requiring MCP integration. The CLI accepts search queries, jurisdiction filters, and section identifiers as command-line arguments and outputs results in JSON, plain text, or markdown format. Implementation uses a Node.js CLI framework (likely Commander.js or similar) that wraps the same underlying legislation database queries as the MCP interface, enabling standalone usage for scripts, shell pipelines, and non-MCP environments.
Unique: Dual-mode architecture supporting both MCP (for LLM agents) and standalone CLI (for scripts and automation), using the same underlying legislation database to avoid duplication and ensure consistency across interfaces
vs alternatives: More flexible than web-only legislation lookup tools; enables integration into shell pipelines and automation workflows without requiring a running MCP server or LLM client
legislation-metadata-extraction
Extracts and returns structured metadata for legislation documents including act name, jurisdiction, commencement date, repeal date, amendment history, and related acts. The tool parses legislation headers and metadata sections to identify key administrative information and returns it as structured JSON. Implementation uses regex patterns and heuristic parsing to identify metadata fields from legislative document headers, supplemented by a metadata database for acts with non-standard formatting.
Unique: Provides structured metadata extraction as a dedicated capability, enabling agents and tools to assess legislation currency and status without manual document review, critical for compliance and legal research workflows
vs alternatives: More comprehensive than simple text search; returns actionable metadata (commencement dates, repeal status, amendments) that generic legislation APIs often require separate lookups to obtain