We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wshobson/maverick-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
Maverick-MCP Agents Module.
This module contains LangGraph-based agents for financial analysis workflows.
"""
from .base import INVESTOR_PERSONAS, PersonaAwareAgent, PersonaAwareTool
from .circuit_breaker import circuit_breaker, circuit_manager
from .deep_research import DeepResearchAgent
from .supervisor import SupervisorAgent
__all__ = [
"PersonaAwareAgent",
"PersonaAwareTool",
"INVESTOR_PERSONAS",
"circuit_breaker",
"circuit_manager",
"DeepResearchAgent",
"SupervisorAgent",
]