Spaces:
Sleeping
Sleeping
File size: 270 Bytes
1af10cc |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
TutorX MCP Server Package
This package contains the Model Context Protocol (MCP) server for the TutorX educational platform.
"""
__version__ = "0.1.0"
def get_version() -> str:
"""Return the current version of the TutorX MCP server."""
return __version__
|