We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bpamiri/pymssql-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
app.py•401 B
"""FastMCP application instance for mssql-mcp.
This module exists to avoid circular import issues when running
the server with `python -m mssql_mcp.server`. By having the mcp
instance in a separate module, all tools import from the same
instance regardless of how the server is started.
"""
from mcp.server.fastmcp import FastMCP
# Create FastMCP server instance
mcp = FastMCP("MS SQL MCP Server")