List packets
list_packetsList stored packets newest-first to find an ID before reading one; returns metadata and on-disk paths, with optional direction, purpose, or tag filters.
Instructions
List packets in this store, newest first, to find an ID before reading one with get_packet; returns metadata and on-disk paths, never packet bodies. Defaults to both directions and at most 50 results; private records stay hidden unless the server was started with --include-private, and asking for them without it returns a NOTCH_PRIVATE_HIDDEN warning instead of failing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Recipient filter; accepted but not applied by the MCP server — filter the returned recipient fields yourself. | |
| tags | No | Return only packets carrying every tag listed; tags are slug-matched. | |
| limit | No | Maximum packets to return (1-50, default 50). Results are newest-first, so a limit keeps the most recent. | |
| since | No | ISO 8601 timestamp intended to bound results by creation time; accepted but not applied by the MCP server. | |
| purpose | No | Return only handoff packets or only seed packets. | |
| direction | No | 'inbox' for packets received here, 'outbox' for packets created here, 'both' (default). | |
| fromProject | No | Origin-project filter; accepted but not applied by the MCP server — filter the returned origin fields yourself. | |
| includePrivate | No | Request private records too. Honoured only when the server was started with --include-private; otherwise results stay public and a NOTCH_PRIVATE_HIDDEN warning is returned. Default false. |