We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MCP-Mirror/delexw_mcpware'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
protocol.py•422 B
"""
MCP Protocol module for mcpware
Handles MCP protocol messages and responses
This module maintains backward compatibility by re-exporting classes
that have been refactored into separate modules.
"""
# Import for backward compatibility
from .mcp_protocol_handler import MCPProtocolHandler
from .jsonrpc_handler import JSONRPCHandler
# Re-export all classes
__all__ = [
'MCPProtocolHandler',
'JSONRPCHandler'
]