Skip to main content
Glama

MaverickMCP

by wshobson
MIT License
165
  • Apple
__init__.py1.08 kB
""" Router modules for organizing Maverick-MCP endpoints by domain. This module contains domain-specific routers that organize the MCP tools into logical groups for better maintainability. Personal-use stock analysis MCP server. """ from .data import data_router from .health_enhanced import router as health_enhanced_router from .performance import get_performance_router from .portfolio import portfolio_router from .screening import screening_router from .technical import technical_router # Initialize performance router performance_router = get_performance_router() # Optional: LangGraph agents router try: from .agents import agents_router has_agents = True except ImportError: agents_router = None # type: ignore[assignment] has_agents = False __all__ = [ "data_router", "health_enhanced_router", "performance_router", "portfolio_router", "screening_router", "technical_router", ] if has_agents: __all__.append("agents_router") # Export health router as both names for compatibility health_router = health_enhanced_router

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/wshobson/maverick-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server