We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/burconsult/msgraph-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•505 B
"""
Microsoft Graph MCP Server
A Model Context Protocol (MCP) server implementation for Microsoft Graph v2 beta.
Provides standardized access to Microsoft 365 and Azure AD services through MCP.
"""
__version__ = "0.1.0"
__author__ = "MCP Microsoft Graph"
__description__ = "MCP server client implementation for Microsoft Graph v2 beta"
from .server import MCPGraphServer
from .auth import GraphAuthManager
from .config import GraphConfig
__all__ = ["MCPGraphServer", "GraphAuthManager", "GraphConfig"]