Mezmo integration
Mezmo provides a comprehensive platform for log management and telemetry data…
- Provider
- mezmo
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 36 available
Quick start
Call Mezmo from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Mezmo's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"MEZMO_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Mezmo API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
36 actions exposed via the
Mezmo integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MEZMO_CREATE_CATEGORY -
MEZMO_CREATE_INGESTION_EXCLUSION -
MEZMO_CREATE_KEY -
MEZMO_CREATE_MEMBER -
MEZMO_CREATE_PRESET_ALERT -
MEZMO_CREATE_VIEW -
MEZMO_DELETE_CATEGORY -
MEZMO_DELETE_INGESTION_EXCLUSION -
MEZMO_DELETE_KEY -
MEZMO_DELETE_MEMBER -
MEZMO_DELETE_PIPELINE_ALERT -
MEZMO_DELETE_PRESET_ALERT
Show all 36 actions
-
MEZMO_DELETE_VIEW -
MEZMO_GET_ALERT -
MEZMO_GET_CATEGORY -
MEZMO_GET_INDEX_RATE_ALERT -
MEZMO_GET_INGESTION_EXCLUSION -
MEZMO_GET_INGESTION_STATUS -
MEZMO_GET_KEY -
MEZMO_GET_MEMBER -
MEZMO_GET_STREAM_CONFIG -
MEZMO_GET_VIEW -
MEZMO_INGEST_LOGS -
MEZMO_LIST_ALERTS -
MEZMO_LIST_KEYS -
MEZMO_LIST_MEMBERS -
MEZMO_LIST_PIPELINES -
MEZMO_LIST_VIEWS -
MEZMO_RESUME_INGESTION -
MEZMO_UPDATE_CATEGORY -
MEZMO_UPDATE_INDEX_RATE_ALERT -
MEZMO_UPDATE_INGESTION_EXCLUSION -
MEZMO_UPDATE_KEY -
MEZMO_UPDATE_MEMBER -
MEZMO_UPDATE_PRESET_ALERT -
MEZMO_UPDATE_VIEW
Build with Mezmo
Open OverSkill, describe what you want to build, and reference Mezmo in your prompt — the AI will wire up the integration automatically.