We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bpamiri/mssql-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•320 B
"""MCP tools for SQL Server operations."""
# Import all tool modules to register their tools with the FastMCP instance
from . import crud, databases, export, knowledge, query, stored_procs, tables
__all__ = [
"crud",
"databases",
"export",
"knowledge",
"query",
"stored_procs",
"tables",
]