Coverage for src/qdrant_loader_mcp_server/mcp/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-20 10:15 +0000
« prev ^ index » next coverage.py v7.15.0, created at 2026-07-20 10:15 +0000
1"""MCP (Model Context Protocol) implementation for RAG server.
3The hand-rolled JSON-RPC dispatcher (MCPHandler) and tool schemas were removed
4in favour of the FastMCP app in ``fastmcp_app`` / ``fastmcp_tools``. The
5SearchHandler/IntelligenceHandler business logic and MCPProtocol (used by them
6to build response envelopes) remain and are consumed by the FastMCP tools.
7"""
9from .protocol import MCPProtocol
11__all__ = ["MCPProtocol"]