mcp-caselaw-server-cz

danospanos/mcp-caselaw-server-cz

3.2

If you are the rightful owner of mcp-caselaw-server-cz and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

Judicature MCP is a FastMCP server running over HTTP with Uvicorn, designed to facilitate legal content extraction and search functionalities.

Tools
2
Resources
0
Prompts
0

Judicature MCP

FastMCP server running over HTTP with Uvicorn.

Available Tools

1. search_ak_vrana

Search the ak-vrana.cz website for articles matching given keywords.

Parameters:

  • keywords (string): Search keywords (e.g., "odcizeni veci")

Returns: JSON with search results including article links and text.

2. extract_page_content

Extract and convert webpage content to Markdown format.

Parameters:

  • url (string): Full URL of the webpage to extract

Returns: JSON with markdown-formatted content from the page's <main> element.

Quick Start

Build:

docker build -t judicature-mcp .

Run:

docker run -p 8000:8000 judicature-mcp

Access: http://localhost:8000

Development

With auto-reload:

docker run -p 8000:8000 -v $(pwd):/app judicature-mcp uvicorn server:app --host 0.0.0.0 --port 8000 --reload

Interactive shell:

docker run -it --rm judicature-mcp /bin/bash

Known Issues

  • Search pagination: The search_ak_vrana tool only processes the first page of search results. If the search returns multiple pages, subsequent pages are not retrieved.
  • Extra content in extraction: The extract_page_content tool extracts all content within <main> tags, which may include crossroad/navigation elements below the main article text, potentially causing unintended text additions in the markdown output.