We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/combiz/mssql-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•255 B
#!/usr/bin/env python3
"""
Simple runner script for MSSQL MCP Server
This ensures the server runs correctly when called from MCP configuration
"""
if __name__ == "__main__":
from mssql_mcp_server import main
import asyncio
asyncio.run(main())