scan_theorem Tool¶
scan_theorem performs targeted theorem analysis with structural segmentation
and automation scoring.
Entrypoint and runtime path¶
- FastMCP entry:
server.py::scan_theorem_tool(file, target) - Tool function:
tools/scan_theorem.py::scan_theorem - Core pipeline:
indexer/find_by_id|find_by_range->features->segmenter->scoring
scan_theorem does not execute Lean REPL commands.
Request fields¶
{
"file": "path/to/File.lean",
"target": {
"theorem_id": "Namespace.theoremName"
}
}
target may also be a range:
{
"target": {
"range": {
"start_line": 10,
"end_line": 30
}
}
}
Response highlights¶
api_version:1.1.0status:success | failtool:scan_theoremtargetechotheoremobject withstructure,automation,notes
Status semantics¶
| Status | Meaning | Trigger |
|---|---|---|
success |
analysis completed | theorem target resolved and analysis produced result |
fail |
request/analysis failed | invalid target args or analysis exception |
Workflow¶
flowchart LR
A["MCP entry"] --> B["args + target validation"]
B --> C["read file + build index"]
C --> D["resolve target theorem"]
D --> E["extract_features"]
E --> F["segment_proof"]
F --> G["compute_profile"]
G --> H["deterministic formatting"]
H --> I["response"]