Coverage for mcpgateway/validation/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-22 12:53 +0100
« prev ^ index » next coverage.py v7.9.1, created at 2025-06-22 12:53 +0100
1# -*- coding: utf-8 -*-
2"""Validation Package.
4Copyright 2025
5SPDX-License-Identifier: Apache-2.0
6Authors: Mihai Criveti
8Provides validation components for the MCP Gateway including:
9- JSON-RPC request/response validation
10"""
12from mcpgateway.validation.jsonrpc import (
13 JSONRPCError,
14 validate_request,
15 validate_response,
16)
18__all__ = ["validate_request", "validate_response", "JSONRPCError"]