lean-ctx 3.5.5

Context Runtime for AI Agents with CCP. 57 MCP tools, 10 read modes, 95+ compression patterns, cross-session memory (CCP), persistent AI knowledge with temporal facts + contradiction detection, multi-agent context sharing + diaries, 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 std::path::Path;

use rmcp::model::Tool;
use rmcp::ErrorData;
use serde_json::{json, Map, Value};

use crate::server::tool_trait::{get_int, get_str, McpTool, ToolContext, ToolOutput};
use crate::tool_defs::tool_def;

pub struct CtxArtifactsTool;

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

    fn tool_def(&self) -> Tool {
        tool_def(
            "ctx_artifacts",
            "Context artifact registry + BM25 index. Actions: list|status|index|reindex|search|remove.",
            json!({
                "type": "object",
                "properties": {
                    "action": {
                        "type": "string",
                        "enum": ["list", "status", "index", "reindex", "search", "remove"],
                        "description": "Artifact action"
                    },
                    "project_root": {
                        "type": "string",
                        "description": "Project root (default: session project root)"
                    },
                    "query": {
                        "type": "string",
                        "description": "Search query (required for action=search)"
                    },
                    "name": {
                        "type": "string",
                        "description": "Artifact name (required for action=remove)"
                    },
                    "top_k": {
                        "type": "integer",
                        "description": "Max results (default: 10, max: 50)"
                    },
                    "format": {
                        "type": "string",
                        "enum": ["json", "markdown"],
                        "description": "Output format (default: json)"
                    }
                },
                "required": ["action"]
            }),
        )
    }

    fn handle(
        &self,
        args: &Map<String, Value>,
        ctx: &ToolContext,
    ) -> Result<ToolOutput, ErrorData> {
        let action = get_str(args, "action")
            .ok_or_else(|| ErrorData::invalid_params("action is required", None))?;
        let format = get_str(args, "format");
        let query = get_str(args, "query");
        let name = get_str(args, "name");
        let top_k = get_int(args, "top_k").map(|d| d as usize);
        let root = ctx
            .resolved_path("project_root")
            .or(ctx.resolved_path("root"))
            .unwrap_or(&ctx.project_root);

        let result = crate::tools::ctx_artifacts::handle(
            &action,
            Path::new(root),
            name.as_deref().or(query.as_deref()),
            top_k,
            format.as_deref(),
        );

        Ok(ToolOutput::simple(result))
    }
}