aluris-caselibrary-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CASE_DB_PATH | Yes | Path to the case database directory |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_authoritative_casesA | 检索权威案例与司法规则。优先返回最高法、最高检、法答网等权威来源,并标注权威类型、引用价值和适用场景。 |
| search_similar_casesA | 语义检索类案。输入自然语言描述(如'小股东查账被拒'),返回相关案例,并标注权威类型和引用价值。 |
| get_case_detailA | 按搜索结果中的案例编号获取完整信息(基本案情、裁判理由、全文等)。 |
| find_rules_by_issueC | 按法律争点查找权威案例和裁判规则,例如股东知情权、建设工程优先受偿权、格式条款效力。 |
| generate_case_citation_briefA | 按搜索结果中的案例编号生成可放入类案检索报告、代理意见或法律分析的案例引用摘要。 |
| filter_casesB | 按条件精确过滤案例(不做语义搜索),支持法院、年份、案由、来源等维度。 |
| library_statsA | 查看案例库统计数据:总数、类别分布、数据源分布、年份范围。 |
| sync_nowA | 手动触发案例库增量同步(从 rmfyalk 拉取最新入库案例)。同步可能需要数分钟,完成后返回新增案例数。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Each tool has a distinct purpose: precise filtering, rule finding, citation generation, detail retrieval, statistics, authoritative search, semantic search, and sync. There is minor potential confusion between filter_cases and search_authoritative_cases, but descriptions clarify the difference.
Most tools follow a verb_noun pattern in snake_case (e.g., filter_cases, get_case_detail). 'library_stats' and 'sync_now' deviate slightly, but overall naming is predictable and readable.
Eight tools cover the essential operations for a case library: search, filter, detail, rules, citations, statistics, and sync. The count is well-scoped without being excessive or insufficient.
The tool set covers core use cases like searching, filtering, and retrieving case details and rules. It lacks explicit tools for adding or deleting cases, but that aligns with a read-only library with external sync. Minor gap in batch operations.