Skip to main content
Glama
__init__.py750 B
#!/usr/bin/env python # coding: utf-8 import importlib import inspect # List of modules to import from MODULES = [ "searxng_mcp.searxng_mcp", ] # Initialize __all__ to expose all public classes and functions __all__ = [] # Dynamically import all classes and functions from the specified modules for module_name in MODULES: module = importlib.import_module(module_name) for name, obj in inspect.getmembers(module): # Include only classes and functions, excluding private (starting with '_') if (inspect.isclass(obj) or inspect.isfunction(obj)) and not name.startswith( "_" ): globals()[name] = obj __all__.append(name) """ searxng-mcp SearXNG Search Engine MCP Server! """

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/Knuckles-Team/searxng-mcp'

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