chunk-your-tools 2.0.2

MCP tool schema decomposition and recomposition
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
"""Library version (Rust core)."""

from __future__ import annotations

from chunk_your_tools._native import get_version as _get_version

__all__ = ["get_version"]


def get_version() -> str:
    """Return the chunk-your-tools library version string."""
    return str(_get_version())