Mem0 integration
Mem0 is an universal, self-improving memory layer for LLM applications.
- Provider
- mem0
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 47 available
Quick start
Call Mem0 from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Mem0'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(
"MEM0_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 Mem0 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
47 actions exposed via the
Mem0 integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MEM0_ADD_MEMBER_TO_PROJECT -
MEM0_ADD_NEW_MEMORY_RECORDS -
MEM0_ADD_ORGANIZATION_MEMBER -
MEM0_CREATE_A_NEW_AGENT -
MEM0_CREATE_A_NEW_AGENT_RUN -
MEM0_CREATE_A_NEW_APPLICATION -
MEM0_CREATE_A_NEW_ORGANIZATION_ENTRY -
MEM0_CREATE_A_NEW_USER -
MEM0_CREATE_MEMORY_ENTRY -
MEM0_CREATE_PROJECT -
MEM0_CREATE_WEBHOOK -
MEM0_DELETE_AN_ORGANIZATION
Show all 47 actions
-
MEM0_DELETE_A_SPECIFIC_MEMORY_BY_ID -
MEM0_DELETE_ENTITY_BY_TYPE_AND_ID -
MEM0_DELETE_MEMORIES_ENDPOINT -
MEM0_DELETE_MEMORY_BATCH_WITH_UUIDS -
MEM0_DELETE_PROJECT -
MEM0_DELETE_PROJECT_MEMBER -
MEM0_DELETE_WEBHOOK -
MEM0_EXPORT_DATA_BASED_ON_FILTERS -
MEM0_FETCH_DETAILED_LIST_OF_ORGANIZATIONS -
MEM0_FETCH_DETAILS_OF_A_SPECIFIC_ORGANIZATION -
MEM0_FETCH_LIST_OF_ENTITY_FILTERS -
MEM0_FETCH_SPECIFIC_ENTITY_DETAILS_WITH_OPTIONAL_FILTERS -
MEM0_GET_EVENT_STATUS_BY_EVENT_ID -
MEM0_GET_MEMORIES_BY_ENTITY -
MEM0_GET_MEMORY_EXPORT -
MEM0_GET_ORGANIZATION_MEMBERS -
MEM0_GET_PROJECT_DETAILS -
MEM0_GET_PROJECT_MEMBERS -
MEM0_GET_PROJECTS -
MEM0_GET_PROJECT_WEBHOOKS -
MEM0_GET_USER_MEMORY_STATS -
MEM0_LIST_ENTITIES_WITH_OPTIONAL_ORG_AND_PROJECT_FILTERS -
MEM0_PERFORM_SEMANTIC_SEARCH_ON_MEMORIES -
MEM0_REMOVE_A_MEMBER_FROM_THE_ORGANIZATION -
MEM0_RETRIEVE_ALL_EVENTS_FOR_THE_CURRENTLY_LOGGED_IN_USER -
MEM0_RETRIEVE_LIST_OF_MEMORY_EVENTS -
MEM0_RETRIEVE_MEMORY_BY_UNIQUE_IDENTIFIER -
MEM0_RETRIEVE_MEMORY_HISTORY_BY_ID -
MEM0_RETRIEVE_MEMORY_LIST -
MEM0_SEARCH_MEMORIES_WITH_QUERY_FILTERS -
MEM0_UPDATE_MEMORY_BATCH_WITH_UUID -
MEM0_UPDATE_MEMORY_DETAILS_BY_ID -
MEM0_UPDATE_ORGANIZATION_MEMBER_ROLE -
MEM0_UPDATE_PROJECT -
MEM0_UPDATE_PROJECT_MEMBER_ROLE
Build with Mem0
Open OverSkill, describe what you want to build, and reference Mem0 in your prompt — the AI will wire up the integration automatically.