Expand description
Graph query MCP tools for Fabryk.
This crate provides MCP tools that delegate to fabryk-graph algorithms.
§Tools
graph_related— find related nodesgraph_path— shortest path between nodesgraph_prerequisites— learning order prerequisitesgraph_neighborhood— N-hop neighborhood explorationgraph_info— graph statisticsgraph_validate— structure validationgraph_centrality— most important nodesgraph_bridges— gateway nodes
§Example
ⓘ
use fabryk_graph::load_graph;
use fabryk_mcp_graph::GraphTools;
let graph = load_graph("graph.json")?;
let graph_tools = GraphTools::new(graph);
// Register with composite registry
let registry = CompositeRegistry::new().add(graph_tools);Re-exports§
pub use tools::GraphTools;pub use tools::NeighborhoodArgs;pub use tools::PathArgs;pub use tools::PrerequisitesArgs;pub use tools::RelatedArgs;
Modules§
- tools
- MCP tools for graph queries.