"""Mathematical operation tools for the Math MCP server."""
# Tools are registered via decorators in their respective modules
# Import modules to trigger registration
from . import basic
from . import array
from . import statistics
from . import financial
from . import linalg
from . import calculus
__all__ = ["basic", "array", "statistics", "financial", "linalg", "calculus"]