We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Gatescrispy/mcp-ga4-ultimate'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•824 B
"""
MCP Google Analytics 4 Ultimate Server
A comprehensive Model Context Protocol server for Google Analytics 4 integration.
Provides 54 specialized tools across 5 phases for advanced analytics capabilities.
"""
__version__ = "1.0.0"
__author__ = "MCP GA4 Ultimate Team"
__email__ = "contact@example.com"
from .server import MCPGoogleAnalytics4Ultimate
__all__ = [
"MCPGoogleAnalytics4Ultimate",
"__version__",
]
def main():
"""Main entry point for the MCP server"""
import sys
import asyncio
from .server import main as server_main
try:
asyncio.run(server_main())
except KeyboardInterrupt:
print("\nServer stopped by user")
sys.exit(0)
except Exception as e:
print(f"Server error: {e}")
sys.exit(1)
if __name__ == "__main__":
main()