chronica_list_threads
Retrieve a list of memory threads with names, IDs, entry counts, and dates from the Chronica MCP server to organize and access structured memory across sessions.
Instructions
スレッド一覧を取得します(スレッド名・ID・エントリ件数・日付のみ)。 エントリの本文やタグは含まれない。記憶の中身を見せる・列挙するには chronica_search を使う(引数なしで直近の記憶一覧)。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_type | No | スレッドタイプでフィルタ(省略時は全て) |
Implementation Reference
- src/chronica/tools.py:529-535 (handler)Implementation of the 'chronica_list_threads' tool handler, which calls the store's list_threads method.
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:292-307 (registration)Tool registration for 'chronica_list_threads' including its input schema and description.
name="chronica_list_threads", description=""" スレッド一覧を取得します(スレッド名・ID・エントリ件数・日付のみ)。 エントリの本文やタグは含まれない。記憶の中身を見せる・列挙するには chronica_search を使う(引数なしで直近の記憶一覧)。 """, inputSchema={ "type": "object", "properties": { "thread_type": { "type": "string", "enum": ["normal", "project"], "description": "スレッドタイプでフィルタ(省略時は全て)" } } } ),