"""
Legacy entry point for backwards compatibility.
This file is kept for backwards compatibility with existing configurations.
The actual implementation has moved to src/zeropath_mcp_server/server.py
For new installations, use:
python -m zeropath_mcp_server
or:
zeropath-mcp-server
"""
from zeropath_mcp_server import mcp
if __name__ == "__main__":
mcp.run(transport="stdio")