We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lumos-Labs-HQ/amazon-q-docMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•453 B
"""
Amazon Q Web Documentation Reader - Source Package
This package contains the MCP server implementation for reading
web documentation and extracting content for Amazon Q.
"""
# Only import when explicitly needed
__all__ = ["mcp"]
def __getattr__(name):
if name == "mcp":
from .server import mcp
from . import tools # Register tools
return mcp
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")