MCPcopy Create free account
hub / github.com/codeaashu/claude-code / list

Method list

web/lib/api/conversations.ts:30–30  ·  view source on GitHub ↗
(options?: ListOptions)

Source from the content-addressed store, hash-verified

28
29export interface ConversationAPI {
30 list(options?: ListOptions): Promise<Conversation[]>;
31 get(id: string): Promise<Conversation>;
32 create(options?: CreateOptions): Promise<Conversation>;
33 update(id: string, updates: Partial<Pick<Conversation, "title" | "model">>): Promise<Conversation>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected