Skip to main content
Glama

Find Flights MCP Server

by ravinahp
server.py529 B
"""Server initialization for find-flights MCP.""" import logging from .services.search import mcp # Set up logging logger = logging.getLogger(__name__) def main(): """Entry point for the find-flights-mcp application.""" logger.info("Starting Find Flights MCP server") try: mcp.run(transport='stdio') logger.info("Server initialized successfully") except Exception as e: logger.error(f"Server error occurred: {str(e)}", exc_info=True) raise if __name__ == "__main__": main()

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ravinahp/flights-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server