Coverage for mcpgateway/validation/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-07-09 11:03 +0100

1# -*- coding: utf-8 -*- 

2"""Validation Package. 

3 

4Copyright 2025 

5SPDX-License-Identifier: Apache-2.0 

6Authors: Mihai Criveti 

7 

8Provides validation components for the MCP Gateway including: 

9- JSON-RPC request/response validation 

10""" 

11 

12from mcpgateway.validation.jsonrpc import ( 

13 JSONRPCError, 

14 validate_request, 

15 validate_response, 

16) 

17 

18__all__ = ["validate_request", "validate_response", "JSONRPCError"]