We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Zazzles2908/EX_AI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
flow_diagram.md•629 B
# System Flow Diagram (Augment)
Status: Visual quick reference
```mermaid
graph TD
U[Client] --> C[MCP Client]
C --> S[Server]
S --> LT[list_tools]
S --> CT[handle_call_tool]
CT --> T[tools]
T --> R[RouterService]
R --> REG[ModelProviderRegistry]
REG --> P[Provider]
P --> X[Upstream APIs]
T -.-> AR[IntelligentTaskRouter]
AR -.-> R
S --> L[logs]
```
Notes
- src/providers is canonical for providers; top-level providers/ is a temporary shim
- Tools live under tools/ and call into RouterService when models are needed
- Agentic router is optional and should not conflict with RouterService decisions