Skip to main content
Glama

Adaptive Graph of Thoughts MCP Server

main_stdio.pyβ€’819 B
import asyncio import logging from adaptive_graph_of_thoughts.config import settings from adaptive_graph_of_thoughts.server_factory import MCPServerFactory async def main() -> None: """Main entry point for STDIO MCP server.""" # Configure logging to file to avoid interfering with STDIO communication logging.basicConfig( filename="stdio_server.log", level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", filemode="w" ) logging.info("Starting MCP STDIO server...") # Run the STDIO server using the factory method try: await MCPServerFactory.run_stdio_server() except Exception as e: logging.exception("STDIO server failed: %s", e) raise if __name__ == "__main__": asyncio.run(main())

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