We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sharavanask/ShopAssist-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•368 B
#!/usr/bin/env python3
"""
Amazon Product Search MCP Server
Main entry point for the MCP server.
"""
import asyncio
from server.buy import mcp
def main():
"""Run the MCP server."""
print("🚀 Starting Amazon Product Search MCP Server...")
print("Available tools:", [tool.name for tool in mcp.tools])
mcp.run()
if __name__ == "__main__":
main()