"""
MCP Server Handlers
This package contains modular handlers for the JSON Schema Validator MCP Server.
Each handler module focuses on a specific aspect of functionality.
"""
from .validation_handlers import handle_validate_json_schema, handle_validate_json_from_collections, handle_get_validation_info
from .schema_handlers import handle_add_update_schema, handle_delete_schema, handle_get_schema, handle_list_schemas, handle_generate_schema
__all__ = [
"handle_validate_json_schema",
"handle_validate_json_from_collections",
"handle_get_validation_info",
"handle_add_update_schema",
"handle_delete_schema",
"handle_get_schema",
"handle_list_schemas",
"handle_generate_schema"
]