MCP-PIF Server

reason

Process thoughts with flexible relationships

Input Schema

NameRequiredDescriptionDefault
thoughtsYes

Input Schema (JSON Schema)

{ "properties": { "thoughts": { "items": { "properties": { "content": { "description": "Thought content", "type": "string" }, "relationTo": { "description": "Optional ID of related thought", "type": "number" }, "relationType": { "description": "Optional relationship type", "enum": [ "sequence", "reflection", "association" ], "type": "string" } }, "required": [ "content" ], "type": "object" }, "type": "array" } }, "required": [ "thoughts" ], "type": "object" }