Skip to main content
Glama

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
NameRequiredDescriptionDefault
thread_typeNoスレッドタイプでフィルタ(省略時は全て)

Implementation Reference

  • 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)
        )]
  • 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": "スレッドタイプでフィルタ(省略時は全て)"
                            }
                        }
                    }
                ),

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Nic9dev/Chronica'

If you have feedback or need assistance with the MCP directory API, please join our Discord server