symgraph 2026.6.14

Semantic code intelligence library and MCP server - build knowledge graphs of codebases
Documentation
1
2
3
4
5
6
7
8
//! Handler for unused symbols tool

use crate::db::Database;
use crate::ops::{self, present, Format};

pub fn handle_unused(db: &Database, format: &Option<String>) -> Result<String, String> {
    present(&ops::unused(db)?, Format::from_request(format))
}