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
9
10
11
12
//! Handler for implementations tool

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

pub fn handle_implementations(db: &Database, req: &SymbolRequest) -> Result<String, String> {
    present(
        &ops::implementations(db, &req.symbol)?,
        Format::from_request(&req.format),
    )
}