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•415 B
"""OAuth authentication module for mssql-mcp.
This module provides OAuth 2.0 authentication support for Claude.ai Integrations,
implementing the MCP SDK's OAuthAuthorizationServerProvider protocol with support
for external identity providers (Duo, Auth0, generic OIDC).
"""
from .provider import MSSQLOAuthProvider
from .storage import InMemoryAuthStorage
__all__ = ["MSSQLOAuthProvider", "InMemoryAuthStorage"]