We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sailaoda/search-fusion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.py•473 B
#!/usr/bin/env python
"""
Search Fusion MCP Server - Main entry point
Maintains backward compatibility while using new server architecture
"""
import os
import sys
# Add current directory to Python path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from server import SearchFusionServer
def main():
"""Main entry point - start Search Fusion MCP Server"""
server = SearchFusionServer()
server.run()
if __name__ == "__main__":
main()