Developer docs

Zep integration

The Foundational Memory Layer for AI.

Updated June 2026 41 actions available

Provider
zep
Category
Other
Setup
User-supplied API key
Actions
41 available

Quick start

Call Zep from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Zep'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(
  "ZEP_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 Zep 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

41 actions exposed via the Zep integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 41 actions
  • ZEP_DELETE_THREAD
  • ZEP_DELETE_USER
  • ZEP_GET_EDGE
  • ZEP_GET_GRAPH_BY_ID
  • ZEP_GET_GROUP
  • ZEP_GET_NODE_EDGES
  • ZEP_GET_PROJECT_INFO
  • ZEP_GET_SESSION
  • ZEP_GET_SESSION_MEMORY
  • ZEP_GET_SESSION_MESSAGE
  • ZEP_GET_SESSION_MESSAGES
  • ZEP_GET_TASK_STATUS
  • ZEP_GET_THREAD_MESSAGES
  • ZEP_GET_THREAD_USER_CONTEXT
  • ZEP_GET_USER
  • ZEP_GET_USER_NODE
  • ZEP_GET_USER_NODES
  • ZEP_GET_USER_SESSIONS
  • ZEP_GET_USER_THREADS
  • ZEP_GRAPH_SEARCH
  • ZEP_LIST_GROUPS_ORDERED
  • ZEP_LIST_SESSIONS_ORDERED
  • ZEP_LIST_THREADS
  • ZEP_LIST_USERS_ORDERED
  • ZEP_UPDATE_GRAPH
  • ZEP_UPDATE_GROUP
  • ZEP_UPDATE_MESSAGE
  • ZEP_UPDATE_SESSION
  • ZEP_UPDATE_USER

Build with Zep

Open OverSkill, describe what you want to build, and reference Zep in your prompt — the AI will wire up the integration automatically.