lean-ctx 3.9.7

Context Runtime for AI Agents with CCP. 71 MCP tools, 10 read modes, 95+ compression patterns, cross-session memory (CCP), persistent AI knowledge with temporal facts + contradiction detection, multi-agent context sharing, LITM-aware positioning, AAAK compact format, adaptive compression with Thompson Sampling bandits. Supports 24+ AI tools. Reduces LLM token consumption by up to 99%.
Documentation
use rmcp::ErrorData;
use rmcp::model::Tool;
use serde_json::{Map, Value, json};

use crate::server::tool_trait::{McpTool, ToolContext, ToolOutput, get_str, require_resolved_path};
use crate::tool_defs::tool_def;
use crate::tools::ctx_outline::OutlineOpts;

pub struct CtxOutlineTool;

impl McpTool for CtxOutlineTool {
    fn name(&self) -> &'static str {
        "ctx_outline"
    }

    fn tool_def(&self) -> Tool {
        tool_def(
            "ctx_outline",
            "WORKFLOW: call BEFORE ctx_read to map code structure (a syntax-aware table of contents).\n\
            Accepts a FILE or a DIRECTORY (folder surface — per-file symbols). Symbols come from\n\
            tree-sitter (27 languages, real line spans); a conservative regex fallback covers the rest.\n\
            kind=fn|struct|class|trait|enum|impl|all filters by kind; match=<substr> filters by name\n\
            (case-insensitive); format=json emits deterministic JSON labelling the backend per file.\n\
            ANTIPATTERN: NOT for file content (use ctx_read) or deep understanding (use ctx_compose).",
            json!({
                "type": "object",
                "properties": {
                    "path": { "type": "string", "description": "File or directory" },
                    "kind": { "type": "string", "description": "Filter by kind: fn|struct|class|trait|enum|impl|all" },
                    "match": { "type": "string", "description": "Keep only symbols whose name contains this (case-insensitive)" },
                    "format": { "type": "string", "description": "Output format: text (default) | json (deterministic)" }
                },
                "required": ["path"]
            }),
        )
    }

    fn handle(
        &self,
        args: &Map<String, Value>,
        ctx: &ToolContext,
    ) -> Result<ToolOutput, ErrorData> {
        let path = require_resolved_path(ctx, args, "path")?;
        let kind = get_str(args, "kind");
        let name_match = get_str(args, "match");
        let as_json = get_str(args, "format").as_deref() == Some("json");

        let (result, original) = crate::tools::ctx_outline::run(
            &path,
            &OutlineOpts {
                kind: kind.as_deref(),
                name_match: name_match.as_deref(),
                as_json,
            },
        );
        let sent = crate::core::tokens::count_tokens(&result);
        let saved = original.saturating_sub(sent);

        Ok(ToolOutput {
            text: result,
            original_tokens: original,
            saved_tokens: saved,
            mode: kind,
            path: Some(path),
            changed: false,
            shell_outcome: None,
        })
    }

    /// `format=json` produces a deterministic, byte-stable JSON document (#498):
    /// it must be returned verbatim, so the dispatch pipeline skips all prose
    /// decorations and compression for it (#990).
    fn produces_machine_readable(&self, args: Option<&Map<String, Value>>) -> bool {
        args.and_then(|a| a.get("format")).and_then(Value::as_str) == Some("json")
    }
}