← All docs

    Ask Lexomat

    What it does

    ask_lexomat lets you ask a natural-language Slovak legal question and get a grounded, cited answer drawn from Slovak legislation and case law. It is the only natural-language Q&A tool in the Lexomat MCP connector — the other tools are precise retrieval and verification primitives.

    Like every tool in this connector, it is read-only, covers Slovak law only, and its output is informational, not legal advice.

    Do not send client, case, or personal data in your query.

    Inputs

    NameTypeRequiredDescription
    querystringYesThe Slovak legal question to ask.

    Returns

    A grounded answer, prefixed with a jurisdiction/disclaimer note, followed by a Zdroje: (Sources) citation block. The structured output shape is:

    {
      "jurisdiction": "SK",
      "disclaimer": "...",
      "citations": [
        {
          "url": "...",
          "title": "...",
          "source_type": "..."
        }
      ]
    }
    

    Example

    Ask something like:

    Aké sú podmienky pre výpoveď zo strany zamestnávateľa podľa Zákonníka práce?
    

    The calling AI sends this as query, and ask_lexomat returns a cited answer plus the citations array your client can use to link back to the underlying sources.

    Notes

    • ask_lexomat is the only LLM-backed tool in the connector, and the only tool that debits your monthly ask quota — see Usage limits.
    • If no grounded answer can be found, the tool returns a Slovak "no supported answer found" message instead of guessing.
    • An empty query is not accepted — the tool asks for a specific question instead.