chronica_list_threads
Retrieve a list of memory threads with names, IDs, entry counts, and dates from Chronica's persistent memory system. Filter by thread type to organize stored information.
Instructions
スレッド一覧を取得します(スレッド名・ID・エントリ件数・日付のみ)。 エントリの本文やタグは含まれない。記憶の中身を見せる・列挙するには chronica_search を使う(引数なしで直近の記憶一覧)。
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_type | No | スレッドタイプでフィルタ(省略時は全て) |
Implementation Reference
- src/chronica/tools.py:512-518 (handler)The handler implementation for 'chronica_list_threads' which calls `store.list_threads` and returns the formatted thread list.
elif name == "chronica_list_threads": thread_type = arguments.get("thread_type") threads = store.list_threads(thread_type=thread_type) return [types.TextContent( type="text", text=json.dumps({"threads": threads}, ensure_ascii=False, indent=2) )] - src/chronica/tools.py:276-291 (registration)The registration of 'chronica_list_threads' including its schema definition.
name="chronica_list_threads", description=""" スレッド一覧を取得します(スレッド名・ID・エントリ件数・日付のみ)。 エントリの本文やタグは含まれない。記憶の中身を見せる・列挙するには chronica_search を使う(引数なしで直近の記憶一覧)。 """, inputSchema={ "type": "object", "properties": { "thread_type": { "type": "string", "enum": ["normal", "project"], "description": "スレッドタイプでフィルタ(省略時は全て)" } } } ),