# Lawstronaut MCP server

Connect AI to millions of laws and court cases with the Lawstronaut MCP.

## Links
- Registry page: https://www.getdrio.com/mcp/com-lawstronaut-lawstronaut-mcp
- Repository: https://github.com/Lawstronaut-FZCO/lawstronaut-mcp
- Website: https://lawstronaut.com

## Install
- Endpoint: https://mcp.lawstronaut.com
- Auth: Not captured

## Setup notes
- Remote endpoint: https://mcp.lawstronaut.com

## Tools
- list_jurisdictions - List all jurisdictions (countries/states) available in the Lawstronaut legal corpus. Call this FIRST when answering legal questions so you know which "iso" codes are valid for the other tools. Result is cached for the MCP process lifetime
    
    Returns: {data: [{"name": "Belgium", "iso": "BE", "type": "country"}, ...]}
    - Full list of jurisdiction objects including names, iso, and type Endpoint: https://mcp.lawstronaut.com
- list_domains - Retrieves a list of domains for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user wants to find legal domains for a specific jurisdiction and optional filters
    - The user asks about available domains for a domain name
    - The user wants to filter with pagination

    Parameters:
    - domain (optional): Filter domains by name
    - limit: z.number().optional().describe("Number of results to return"),
    - offset: z.number().optional().describe("Number of results to skip")

    Returns:
    - List of domains with domain_id, domain, pagination: total_count, limit, offset
    - Only returns domains that have data Endpoint: https://mcp.lawstronaut.com
- list_subdomains - Retrieves a list of subdomains for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user wants to find legal subdomains for a specific jurisdiction and optional filters
    - The user asks about available subdomains for a domain id
    - The user wants to filter subdomains by name with pagination

    Parameters:
    - domain_id (required): Filter by Domain ID.
    - subdomain (optional): Filter subdomains by name
    - limit: z.number().optional().describe("Number of results to return"),
    - offset: z.number().optional().describe("Number of results to skip")

    Returns:
    - List of subdomains with subdomain_id, subdomain, domain_id, pagination: total_count, limit, offset
    - Only returns subdomains that have data Endpoint: https://mcp.lawstronaut.com
- list_categories - Retrieves a list of categories for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user wants to find legal categories for a specific jurisdiction and optional filters
    - The user asks about available categories for a subdomain id
    - The user wants to filter categories by name with pagination

    Parameters:
    - subdomain_id (optional): Filter by Subdomain ID.
    - category_name (optional): Filter categories by name
    - limit: z.number().optional().describe("Number of results to return"),
    - offset: z.number().optional().describe("Number of results to skip")

    Returns:
    - List of categories with category_id, category_name, subdomain_id, domain_id, pagination: total_count, limit, offset
    - Only returns categories that have data Endpoint: https://mcp.lawstronaut.com
- list_subcategories - Retrieves a list of subcategories for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user wants to find legal subcategories for a specific jurisdiction and optional filters
    - The user asks about available subcategories for a category id
    - The user wants to filter subcategories by name with pagination

    Parameters:
    - category_id (required): Filter by Category ID.
    - subcategory_name (optional): Filter subcategories by name
    - limit: z.number().optional().describe("Number of results to return"),
    - offset: z.number().optional().describe("Number of results to skip")

    Returns:
    - List of subcategories with subcategory_id, subcategory_name, category_id, pagination: total_count, limit, offset
    - Only returns subcategories that have data Endpoint: https://mcp.lawstronaut.com
- list_law_types - Retrieves a list of law types for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user wants to find legal law types for a specific jurisdiction and optional filters
    - The user asks about available law types for a subcategory id
    - The user wants to filter law types by name with pagination

    Parameters:
    - subcategory_id (required): Filter by Subcategory ID.
    - law_type (optional): Filter law types by name
    - limit: z.number().optional().describe("Number of results to return"),
    - offset: z.number().optional().describe("Number of results to skip")

    Returns:
    - List of law types with law_type_id, law_type, subcategory_id, category_id, pagination: total_count, limit, offset
    - Only returns law types that have data Endpoint: https://mcp.lawstronaut.com
- list_portals - Retrieves a list of legal portals filtered by jurisdiction and optional criteria.
    Use this tool when:
    - The user wants to find legal portals, websites, or resources for a specific jurisdiction
    - The user asks about available portals in a country or state
    - The user wants to filter portals by name, language, or tag with total crawled links

    Parameters:
    - iso (required): Filter by Jurisdiction ISO code (e.g. "US").
    - name (optional): Filter portals by name or URL keyword
    - tag (optional): Filter portals by tag
    - lang (optional): Filter portals by language name

    Returns:
    - List of portals with name, URL, language, jurisdiction, tags, and total crawled links
    - Only returns portals that have crawled data Endpoint: https://mcp.lawstronaut.com
- list_authority_types - Retrieves a list of authority types.
    Use this tool when:
    - The user wants to find legal authority types for a specific jurisdiction and optional filters
    - The user asks about available authority types for a portal name, authority type
    - The user wants to filter with pagination

    Parameters:
    - iso (required): Filter by Jurisdiction ISO code (e.g. "US").
    - limit (optional): Number of results to return.
    - offset (optional): Number of results to skip.
    - portal_name (optional): Filter by portal name.
    - authority_type (optional): Filter by authority type.

    Returns:
    - List of authority types with iso, authority_type, portal_name, pagination: total_count, limit, offset
    - Only returns authority types that have data Endpoint: https://mcp.lawstronaut.com
- list_issuing_authorities - Retrieves a list of issuing authorities for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user wants to find legal issuing authorities for a specific jurisdiction and optional filters
    - The user asks about available issuing authorities for a portal name, issuing authority
    - The user wants to filter with pagination

    Parameters:
    - iso (required): Filter by Jurisdiction ISO code (e.g. "US").
    - limit (optional): Number of results to return.
    - offset (optional): Number of results to skip.
    - portal_name (optional): Filter by portal name.
    - issuing_authority (optional): Filter by issuing authority.

    Returns:
    - List of issuing authorities with iso, issuing_authority, portal_name, pagination: total_count, limit, offset
    - Only returns issuing authorities that have data Endpoint: https://mcp.lawstronaut.com
- list_documents - List documents in a jurisdiction with structured filters and pagination.
    Use this tool when:
    - The user wants to find legal content for a specific jurisdiction and optional filters
    - The user asks about available content for a portal name, title, section_title, url, status, repealed, publication_date and crawling_date
    - The user wants to filter content for type of authority, issuing authority, source identifier, source secondary identifier, tag
    Parameters:
    - iso (required): Filter by Jurisdiction ISO code (e.g. "US").
    - portal (optional): Filter by portal name.
    - limit (optional): Number of results to return.
    - offset (optional): Number of results to skip.
    - document_id (optional): Filter by document ID.
    - repealed (optional): Filter by repealed status.
    - title (optional): Filter by title.
    - section_title (optional): Filter by section title.
    - url (optional): Filter by URL.
    - status (optional): Filter by status.
    - crawling_date (optional): Filter by crawling date.
    - last_updated (optional): Filter by last updated date.
    - last_amendment (optional): Filter by last amendment date.
    - publication_date (optional): Filter by publication date.
    - expiration_date (optional): Filter by expiration date.
    - effective_date (optional): Filter by effective date.
    - date_of_enactment (optional): Filter by date of enactment.
    - date_of_decision (optional): Filter by date of decision.
    - file_data_only (optional): Return file data only.
    - issuing_authority (optional): Filter by issuing authority.
    - type_of_authority (optional): Filter by type of authority.
    - source_identifier (optional): Filter by source identifier.
    - source_secondary_identifier (optional): Filter by secondary source identifier.
    - tag (optional): Filter by tag.
    - lang (optional): Filter by language.
    Returns:
    - Contents list with title, section_title, publication_date, effective_date, expiration_date, date_of_enactment, date_of_last_amendment, date_of_repealed, date_of_decision, status, version, source_identifier, source_secondary_identifier, issuing_authority, type_of_authority, language, legal_link, repealed, metadata, summary, tags, source_keywords, crawling_date, portal, portal_name, last_updated
    - Only returns content that has crawled data Endpoint: https://mcp.lawstronaut.com
- get_document_text - Retrieves full text for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user asks about available full text for a portal name, title, section_title, url, status, repealed, publication_date and crawling_date
    - The user wants to filter full text for type of authority, issuing authority, source identifier, source secondary identifier, tag
    Parameters:
    - iso (required): Filter by Jurisdiction ISO code (e.g. "US").
    - portal (optional): Filter by portal name.
    - limit (optional): Number of results to return.
    - offset (optional): Number of results to skip.
    - document_id (optional): Filter by document ID.
    - repealed (optional): Filter by repealed status.
    - title (optional): Filter by title.
    - section_title (optional): Filter by section title.
    - url (optional): Filter by URL.
    - status (optional): Filter by status.
    - crawling_date (optional): Filter by crawling date.
    - last_updated (optional): Filter by last updated date.
    - last_amendment (optional): Filter by last amendment date.
    - publication_date (optional): Filter by publication date.
    - expiration_date (optional): Filter by expiration date.
    - effective_date (optional): Filter by effective date.
    - date_of_enactment (optional): Filter by date of enactment.
    - date_of_decision (optional): Filter by date of decision.
    - file_data_only (optional): Return file data only.
    - issuing_authority (optional): Filter by issuing authority.
    - type_of_authority (optional): Filter by type of authority.
    - source_identifier (optional): Filter by source identifier.
    - source_secondary_identifier (optional): Filter by secondary source identifier.
    - tag (optional): Filter by tag.
    - lang (optional): Filter by language.
    Returns:
    - Content full text list with document_id, full_text Endpoint: https://mcp.lawstronaut.com
- get_markdown - Retrieves markdown for a specific jurisdiction and optional filters.
    Use this tool when:
    - The user asks about available markdown for a portal name, title, section_title, url, status, repealed, publication_date and crawling_date
    - The user wants to filter markdown for type of authority, issuing authority, source identifier, source secondary identifier, tag
    Parameters:
    - iso (required): Filter by Jurisdiction ISO code (e.g. "US").
    - portal (optional): Filter by portal name.
    - limit (optional): Number of results to return.
    - offset (optional): Number of results to skip.
    - document_id (optional): Filter by document ID.
    - repealed (optional): Filter by repealed status.
    - title (optional): Filter by title.
    - section_title (optional): Filter by section title.
    - url (optional): Filter by URL.
    - status (optional): Filter by status.
    - crawling_date (optional): Filter by crawling date.
    - last_updated (optional): Filter by last updated date.
    - last_amendment (optional): Filter by last amendment date.
    - publication_date (optional): Filter by publication date.
    - expiration_date (optional): Filter by expiration date.
    - effective_date (optional): Filter by effective date.
    - date_of_enactment (optional): Filter by date of enactment.
    - date_of_decision (optional): Filter by date of decision.
    - file_data_only (optional): Return file data only.
    - issuing_authority (optional): Filter by issuing authority.
    - type_of_authority (optional): Filter by type of authority.
    - source_identifier (optional): Filter by source identifier.
    - source_secondary_identifier (optional): Filter by secondary source identifier.
    - tag (optional): Filter by tag.
    - lang (optional): Filter by language.
    Returns:
    - Content markdown list with document_id, content_markdown Endpoint: https://mcp.lawstronaut.com
- get_source_url - Get a time-limited signed URL to the original source file (PDF etc.).
    Use this tool when:
    - The user wants to find a pdf URL for a specific document
    - The user asks about presigned URL for a pdf
    Parameters:
    - document_id (required): Document ID.

    Returns:
    - PDF URL for a specific document with document_id and pdf_url Endpoint: https://mcp.lawstronaut.com
- get_document_with_version - Retrieves a specific document with a specific version.
    Use this tool when:
    - The user wants to find a specific document with a specific version
    - The user asks about available a specific document with a specific version

    Parameters:
    - document_id (required): Document ID.
    - version (required): Version.

    Returns:
    - Content with version with title, section_title, publication_date, effective_date, expiration_date, date_of_enactment, date_of_last_amendment, date_of_repealed, date_of_decision, status, version, source_identifier, source_secondary_identifier, issuing_authority, type_of_authority, language, legal_link, repealed, metadata, summary, tags, source_keywords, crawling_date, portal, portal_name, last_updated
    - Only returns content that has crawled data with the specific version Endpoint: https://mcp.lawstronaut.com
- horizon_scan - Scans recent legal documents across jurisdictions.
    Use this when the user asks:
    - "What laws changed recently in Netherland?"
    - "Show me new regulations from last week"
    - "Any updates in NL law?" Endpoint: https://mcp.lawstronaut.com
- evidence_pull - "Show me the source."
     For a specific document, return the full citation chain in one call:
    metadata (with all dates and identifiers), permanent legal_link, signed
    URL to the original source file (if available), and the full document
    body in markdown or plain text. Designed for auditability. Endpoint: https://mcp.lawstronaut.com

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: com.lawstronaut
- Version: 1.1.1
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Jul 9, 2026
- Source: https://registry.modelcontextprotocol.io
