We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kokevidaurre/looker-admin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•517 B
"""
Looker MCP - Model Context Protocol server for Looker integration.
This package provides a modular implementation of MCP server for Looker,
enabling AI assistants to interact with Looker analytics data.
"""
__version__ = "0.1.0"
from . import client
from . import server
from . import tools
from . import resources
from . import prompts
# For convenience, expose the main entry point
from .server import main
__all__ = [
"client",
"server",
"tools",
"resources",
"prompts",
"main",
]