fossil-mcp 0.1.8

Multi-language static analysis toolkit with MCP server. Detects dead code, code clones, and AI scaffolding.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! MCP tool modules for the Fossil code analysis server.
//!
//! Each module exposes an `execute` function that implements a single MCP tool.

pub mod blast_radius;
pub mod call_graph;
pub mod cfg;
pub mod data_flow;
pub mod explain_finding;
pub mod inspect;
pub mod scaffolding;
pub mod trace;