- Provider
- simplekpi
- Category
- Analytics
- Setup
- User-supplied API key
- Actions
- 51 available
Quick start
Call Simplekpi from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Simplekpi'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(
"SIMPLEKPI_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 Simplekpi 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
51 actions exposed via the
Simplekpi integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SIMPLEKPI_ADD_USER_GROUP_ITEM -
SIMPLEKPI_ADD_USER_KPI -
SIMPLEKPI_CREATE_CATEGORY_KPI -
SIMPLEKPI_CREATE_GROUP -
SIMPLEKPI_CREATE_GROUP_ITEM -
SIMPLEKPI_CREATE_KPI -
SIMPLEKPI_CREATE_KPI_CATEGORY -
SIMPLEKPI_CREATE_KPI_UNIT -
SIMPLEKPI_CREATE_OR_UPDATE_KPI_ENTRIES -
SIMPLEKPI_CREATE_USER -
SIMPLEKPI_DELETE_CATEGORY_KPI -
SIMPLEKPI_DELETE_GROUP
Show all 51 actions
-
SIMPLEKPI_DELETE_GROUP_ITEM -
SIMPLEKPI_DELETE_KPI -
SIMPLEKPI_DELETE_KPI_CATEGORY -
SIMPLEKPI_DELETE_KPI_ENTRY -
SIMPLEKPI_DELETE_KPI_UNIT -
SIMPLEKPI_DELETE_USER -
SIMPLEKPI_DELETE_USER_GROUP_ITEM -
SIMPLEKPI_DELETE_USER_KPI -
SIMPLEKPI_GET_ALL_DATA_ENTRIES -
SIMPLEKPI_GET_CATEGORY_KPI -
SIMPLEKPI_GET_GROUP -
SIMPLEKPI_GET_GROUP_ITEM -
SIMPLEKPI_GET_KPI -
SIMPLEKPI_GET_KPI_CATEGORY -
SIMPLEKPI_GET_KPI_ENTRY -
SIMPLEKPI_GET_KPI_FREQUENCY -
SIMPLEKPI_GET_KPI_ICON -
SIMPLEKPI_GET_KPI_UNIT -
SIMPLEKPI_GET_USER -
SIMPLEKPI_GET_USER_GROUP_ITEM -
SIMPLEKPI_GET_USER_KPI -
SIMPLEKPI_LIST_CATEGORY_KPIS -
SIMPLEKPI_LIST_GROUP_ITEMS -
SIMPLEKPI_LIST_GROUPS -
SIMPLEKPI_LIST_KPI_CATEGORIES -
SIMPLEKPI_LIST_KPI_ENTRIES -
SIMPLEKPI_LIST_KPI_FREQUENCIES -
SIMPLEKPI_LIST_KPI_ICONS -
SIMPLEKPI_LIST_KPIS -
SIMPLEKPI_LIST_KPI_UNITS -
SIMPLEKPI_LIST_USER_GROUP_ITEMS -
SIMPLEKPI_LIST_USER_KPIS -
SIMPLEKPI_UPDATE_CATEGORY_KPI -
SIMPLEKPI_UPDATE_GROUP -
SIMPLEKPI_UPDATE_GROUP_ITEM -
SIMPLEKPI_UPDATE_KPI -
SIMPLEKPI_UPDATE_KPI_ENTRY -
SIMPLEKPI_UPDATE_KPI_UNIT -
SIMPLEKPI_UPDATE_USER
Build with Simplekpi
Open OverSkill, describe what you want to build, and reference Simplekpi in your prompt — the AI will wire up the integration automatically.