MCP-PIF Server

journal_create

Create a new journal entry

Input Schema

NameRequiredDescriptionDefault
contentYesMain content of the entry
relatedFilesNoRelated files for context
tagsNoOptional tags for categorization
titleYesEntry title

Input Schema (JSON Schema)

{ "properties": { "content": { "description": "Main content of the entry", "type": "string" }, "relatedFiles": { "description": "Related files for context", "items": { "properties": { "description": { "type": "string" }, "path": { "type": "string" } }, "type": "object" }, "type": "array" }, "tags": { "description": "Optional tags for categorization", "items": { "type": "string" }, "type": "array" }, "title": { "description": "Entry title", "type": "string" } }, "required": [ "title", "content" ], "type": "object" }