Skip to main content
Glama
__init__.py913 B
#!/usr/bin/env python # coding: utf-8 import importlib import inspect # List of modules to import from MODULES = [ "archivebox_api.archivebox_api", "archivebox_api.archivebox_mcp", "archivebox_api.decorators", "archivebox_api.exceptions", ] # 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) """ archivebox-api Interact with ArchiveBox using python API wrapper or Fast MCP Server for Agentic AI! """

Latest Blog Posts

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/archivebox-api'

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