Skip to main content
Connectors link MeepaGateway agents to chat platforms. Each agent connects to one platform, configured in its agent.yaml under connectors.
connectors:
  - type: "meepachat"  # "meepachat" | "discord" | "telegram" | "slack" | "whatsapp"

Supported Platforms

Multi-Agent Routing

Even with a single connector, you can route messages to different agents based on server or channel. Messages not matched by any binding go to the agent marked default = true. Binding resolution order:
  1. Exact channel_id match
  2. channel_name glob match (e.g., "coding-*")
  3. server_id match
  4. Default agent
bindings:
  - agent: "coder"
    channel_name: "coding-*"
  - agent: "support"
    server_id: "abc-123"
    channel_id: "help-desk"
See Configuration for the full bindings reference.