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•401 B
"""
Galaxy Brain MCP Server
=======================
Think. Do. Done.
Combines sequential thinking (planning with revision) with sequential doing
(execution with variable piping) into one unified cognitive loop.
MIT Licensed - Built by Nova + Jason Glass
"""
__version__ = "1.0.0"
__author__ = "Nova + Jason Glass"
__license__ = "MIT"
from .server import serve
__all__ = ["serve", "__version__"]