Skip to main content

jpx_mcp/
lib.rs

1//! JMESPath MCP Server Library
2//!
3//! This library provides the MCP router and tools for JMESPath functionality.
4//! Use `build_router()` to create a configured router for use with any transport.
5
6mod tools;
7
8pub use tools::{build_router, build_router_from_config};