30 lines
404 B
Python
30 lines
404 B
Python
"""
|
|
MCP Tools Package
|
|
|
|
Import all tool modules to register them with the MCP server.
|
|
"""
|
|
|
|
from core.mcp.tools import (
|
|
auth,
|
|
dashboard,
|
|
customers,
|
|
services,
|
|
projects,
|
|
sessions,
|
|
notifications,
|
|
admin,
|
|
utility,
|
|
)
|
|
|
|
__all__ = [
|
|
"auth",
|
|
"dashboard",
|
|
"customers",
|
|
"services",
|
|
"projects",
|
|
"sessions",
|
|
"notifications",
|
|
"admin",
|
|
"utility",
|
|
]
|