Skip to main content
Glama

Adaptive Graph of Thoughts MCP Server

exceptions.pyβ€’621 B
"""Exceptions specific to the GoTProcessor services.""" class ProcessingError(Exception): """Base exception for processing errors.""" pass class StageExecutionError(ProcessingError): """Error raised when a stage fails during execution.""" def __init__( self, stage_name: str, original_error: Exception, context: dict | None = None, ) -> None: self.stage_name = stage_name self.original_error = original_error self.context = context or {} message = f"Stage '{stage_name}' failed: {original_error}" super().__init__(message)

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