# MCP Chain of Draft (CoD) Prompt Tool

MCP Chain of Draft (CoD) Prompt Tool is a BYOLLM MCP (Model Context Protocol) tool that transforms your prompt using another LLM, applying CoD or CoT reasoning techniques, before delivering the final…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add brendancopley/mcp-chain-of-draft-prompt-tool

# Browse available tools
npx -y @smithery/cli@latest tool list brendancopley/mcp-chain-of-draft-prompt-tool

# Get full schema for a tool
npx -y @smithery/cli@latest tool get brendancopley/mcp-chain-of-draft-prompt-tool chain_of_draft_solve

# Call a tool
npx -y @smithery/cli@latest tool call brendancopley/mcp-chain-of-draft-prompt-tool chain_of_draft_solve '{}'
```

## Tools (7)

- `chain_of_draft_solve` — Solve a reasoning problem using Chain of Draft approach
- `math_solve` — Solve a math problem using Chain of Draft reasoning
- `code_solve` — Solve a coding problem using Chain of Draft reasoning
- `logic_solve` — Solve a logic problem using Chain of Draft reasoning
- `get_performance_stats` — Get performance statistics for CoD vs CoT approaches
- `get_token_reduction` — Get token reduction statistics for CoD vs CoT
- `analyze_problem_complexity` — Analyze the complexity of a problem

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get brendancopley/mcp-chain-of-draft-prompt-tool <tool-name>
```

---

Source: https://github.com/brendancopley/mcp-chain-of-draft-prompt-tool
