We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbpfws/sentient-brain-smithery'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•365 B
"""
Services for the Sentient Brain Multi-Agent System.
This package contains all the core services including database connectivity,
LLM integration, and various specialized services for the multi-agent system.
"""
from .surreal_service import SurrealDBService
from .groq_service import GroqLLMService
__all__ = [
"SurrealDBService",
"GroqLLMService",
]