Skip to main content
Glama

Adaptive Graph of Thoughts MCP Server

__init__.pyiβ€’1.4 kB
from typing import Any, Callable, TypeVar, overload # No need to import unused modules _T = TypeVar("_T") class Logger: def debug(self, __message: str, *args: Any, **kwargs: Any) -> None: ... def info(self, __message: str, *args: Any, **kwargs: Any) -> None: ... def warning(self, __message: str, *args: Any, **kwargs: Any) -> None: ... def error(self, __message: str, *args: Any, **kwargs: Any) -> None: ... def critical(self, __message: str, *args: Any, **kwargs: Any) -> None: ... def exception(self, __message: str, *args: Any, **kwargs: Any) -> None: ... def log(self, __level: int, __message: str, *args: Any, **kwargs: Any) -> None: ... def remove(self, __handler_id: int = ...) -> None: ... def add(self, sink: Any, **kwargs: Any) -> int: ... @overload def catch(self, function: Callable[..., _T]) -> Callable[..., _T]: ... @overload def catch( self, exception: type[BaseException] | tuple[type[BaseException], ...] = ..., *, level: str = ..., reraise: bool = ..., message: str = ..., onerror: Callable[..., Any] = ..., ) -> Callable[[Callable[..., _T]], Callable[..., _T]]: ... # Removed the non-overload decorated 'catch' method for stub file compliance # def catch(self, *args: Any, **kwargs: Any) -> Any: ... logger: Logger = ... def configure(**kwargs: Any) -> None: ...

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/SaptaDey/Adaptive-Graph-of-Thoughts-MCP-server'

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