MCPcopy Create free account
hub / github.com/Mnexa-AI/e2a / listConversations

Method listConversations

mcp/src/client.ts:254–260  ·  view source on GitHub ↗
(
    params: { since?: string; until?: string; cursor?: string; limit?: number },
    explicitAddress?: string,
  )

Source from the content-addressed store, hash-verified

252 // ── Conversations ───────────────────────────────────────────────
253
254 listConversations(
255 params: { since?: string; until?: string; cursor?: string; limit?: number },
256 explicitAddress?: string,
257 ): Promise<Page<ConversationSummaryView>> {
258 const { cursor, ...rest } = params;
259 return this.sdk.conversations.list(this.resolveAddress(explicitAddress), rest).page(cursor);
260 }
261
262 getConversation(
263 conversationId: string,

Callers 1

registerMessageToolsFunction · 0.45

Calls 3

resolveAddressMethod · 0.95
pageMethod · 0.80
listMethod · 0.45

Tested by

no test coverage detected