Chain of Draft (CoD) MCP Server

chain_of_draft_solve

Solve a reasoning problem using Chain of Draft approach

Input Schema

NameRequiredDescriptionDefault
adaptive_word_limitNoAdjust word limits based on complexity
approachNoForce 'CoD' or 'CoT' approach
domainNoDomain for context (math, logic, code, common-sense, etc.)
enforce_formatNoWhether to enforce the word limit
max_words_per_stepNoMaximum words per reasoning step
problemYesThe problem to solve

Input Schema (JSON Schema)

{ "properties": { "adaptive_word_limit": { "description": "Adjust word limits based on complexity", "type": "boolean" }, "approach": { "description": "Force 'CoD' or 'CoT' approach", "type": "string" }, "domain": { "description": "Domain for context (math, logic, code, common-sense, etc.)", "type": "string" }, "enforce_format": { "description": "Whether to enforce the word limit", "type": "boolean" }, "max_words_per_step": { "description": "Maximum words per reasoning step", "type": "number" }, "problem": { "description": "The problem to solve", "type": "string" } }, "required": [ "problem" ], "type": "object" }