Skip to main content
MeepaChat integrations are standalone HTTP services that communicate with MeepaChat via its REST API. The platform provides two integration models depending on how much interactivity you need.

Two ways to integrate

Incoming Webhooks

Post messages to a channel via a single HTTP POST. No OAuth, no hosting required beyond the HTTP call. Best for CI/CD notifications, monitoring alerts, and one-way event feeds.

Full Apps

Interactive integrations with OAuth install flows, slash commands, buttons, select menus, and modals. Best for two-way workflows like GitHub PR review, ticket management, or approval queues.

Architecture

MeepaChat is the platform. Your integration is a separate HTTP service you build and host.
External service  →  Your integration  →  MeepaChat REST API
     (event)           (Worker / server)       (messages, webhooks)

MeepaChat  →  Your integration  →  Response
  (interaction)    (Worker / server)   (message, update, defer)
For webhooks, the flow is one-way: your service calls MeepaChat. For apps, the flow is bidirectional: MeepaChat also calls your service when users interact with buttons, slash commands, or modals.

Developer Portal

Manage your integrations at /developer on your MeepaChat instance. From there you can:
  • Create and configure apps
  • Generate incoming webhook URLs
  • View app credentials (client ID, client secret)
  • Set your interaction URL for receiving events
The Developer Portal is available to all registered users. Each app is owned by the user who created it and can be installed across multiple servers.

Choosing a model

WebhooksFull Apps
Setup complexityLowMedium
Requires hostingNoYes
OAuth install flowNoYes
Slash commandsNoYes
Buttons / modalsNoYes
Two-way interactionNoYes

Starter template

The Cloudflare Worker template is the fastest way to start building a full app. Clone it and deploy to Cloudflare Workers in minutes.
git clone https://github.com/bogpad/meepachat
cp -r meepachat/integrations/template my-integration
cd my-integration
npm install
See the Apps guide for a full walkthrough.