citation_extract_citations_from_text
ActiveTool of CourtListener
Extract all legal citations from a block of text using citeurl. This tool finds and parses all legal citations within a given text, including both long-form and short-form citations (like 'id.' references). Args: text: The text containing legal citations to extract. ctx: The FastMCP context for logging. Returns: dict[str, list | int]: A dictionary containing: - total_citations: Number of citations found - citations: List of parsed citation information - text_length: Length of the input text - error (optional): Error message if extraction failed
Parameters schema
{
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Text containing legal citations to extract"
}
},
"additionalProperties": false
}Parent server
CourtListener
https://github.com/Vaquill-AI/courtlistener-mcp
1/7 registries