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
main.py•361 B
"""
Amazon Q Web Documentation Reader - MCP Server
This MCP server provides tools to fetch and extract documentation
content from web pages for use with Amazon Q.
Usage:
Run directly: python main.py
Or with uv: uv run main.py
"""
from src import mcp
def main():
"""Start the MCP server."""
mcp.run()
if __name__ == "__main__":
main()