chunk-your-tools 2.0.3

MCP tool schema decomposition and recomposition
Documentation
1
2
3
4
5
6
7
8
9
10
from typing import Any

class Connection:
    def executescript(self, script: str, /) -> None: ...
    def commit(self) -> None: ...
    def execute(self, sql: str, params: tuple[Any, ...] | None = ...) -> Any: ...
    def executemany(self, sql: str, params: list[tuple[Any, ...]], /) -> Any: ...
    def close(self) -> None: ...

def connect(path: str, /) -> Connection: ...