We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/huweihua123/stock-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•207 B
# src/server/api/routes/__init__.py
"""API routes."""
from .market_data import router as market_data_router
from .filings import router as filings_router
__all__ = ["market_data_router", "filings_router"]