InstantMCP / mcp_tools /__init__.py
areeb1501
Initial commit - Instant MCP platform
626b033
raw
history blame contribute delete
425 Bytes
"""
MCP Tools Module
This module contains all MCP tool definitions converted to Gradio format.
Each tool is exposed via the Gradio MCP endpoint at /gradio_api/mcp/
"""
from .deployment_tools import _create_deployment_tools
from .stats_tools import _create_stats_tools
from .security_tools import _create_security_tools
__all__ = [
'_create_deployment_tools',
'_create_stats_tools',
'_create_security_tools',
]