Chain of Draft (CoD) MCP Server

logic_solve

Solve a logic problem using Chain of Draft reasoning

Input Schema

NameRequiredDescriptionDefault
approachNoForce 'CoD' or 'CoT' approach
max_words_per_stepNoMaximum words per reasoning step
problemYesThe logic problem to solve

Input Schema (JSON Schema)

{ "properties": { "approach": { "description": "Force 'CoD' or 'CoT' approach", "type": "string" }, "max_words_per_step": { "description": "Maximum words per reasoning step", "type": "number" }, "problem": { "description": "The logic problem to solve", "type": "string" } }, "required": [ "problem" ], "type": "object" }