"""SharePoint MCP Server
A Model Context Protocol (MCP) server for Microsoft SharePoint integration.
Enables Claude to interact with SharePoint sites, libraries, and files via Microsoft Graph API.
"""
from .server import mcp
__version__ = "0.1.0"
def main() -> None:
"""Entry point for the MCP server."""
mcp.run()
__all__ = ["main", "mcp", "__version__"]