MCP-PIF Server

journal_read

Read journal entries within a date range. Dates should be in YYYY-MM-DD format. Times are handled in UTC, and the 'to' date is inclusive through end of day.

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (default: text)
fromNoStart date (YYYY-MM-DD), inclusive from start of day
limitNo
tagsNo
toNoEnd date (YYYY-MM-DD), inclusive through end of day

Input Schema (JSON Schema)

{ "properties": { "format": { "description": "Output format (default: text)", "enum": [ "json", "text" ], "type": "string" }, "from": { "description": "Start date (YYYY-MM-DD), inclusive from start of day", "type": "string" }, "limit": { "type": "number" }, "tags": { "items": { "type": "string" }, "type": "array" }, "to": { "description": "End date (YYYY-MM-DD), inclusive through end of day", "type": "string" } }, "type": "object" }