We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/For-Sunny/galaxy-brain'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•461 B
"""
Galaxy Brain Services
=====================
Three services that form the cognitive loop:
1. ThinkingService - Sequential thinking with revision and branching
2. DoingService - Sequential execution with variable piping
3. BridgeService - Converts thoughts into executable operations
"""
from .thinking import ThinkingService
from .doing import DoingService
from .bridge import BridgeService
__all__ = ['ThinkingService', 'DoingService', 'BridgeService']