MSSQL MCP Server

MIT License
3
  • Linux
  • Apple
  • src
  • mssql_mcp_server
from . import server import asyncio def main(): """Main entry point for the package.""" asyncio.run(server.main()) # Expose important items at package level __all__ = ['main', 'server']