Chain of Draft (CoD) MCP Server
hybrid server
The server is able to function both locally and remotely, depending on the configuration or use case.
Integrations
Provides compatibility with OpenAI API clients, serving as a drop-in replacement for standard OpenAI interfaces while implementing the Chain of Draft approach.
Chain of Draft (CoD) MCP Server
Overview
This MCP server implements the Chain of Draft (CoD) reasoning approach as described in the research paper "Chain of Draft: Thinking Faster by Writing Less". CoD is a novel paradigm that allows LLMs to generate minimalistic yet informative intermediate reasoning outputs while solving tasks, significantly reducing token usage while maintaining accuracy.
Key Benefits
- Efficiency: Significantly reduced token usage (as little as 7.6% of standard CoT)
- Speed: Faster responses due to shorter generation time
- Cost Savings: Lower API costs for LLM calls
- Maintained Accuracy: Similar or even improved accuracy compared to CoT
- Flexibility: Applicable across various reasoning tasks and domains
Features
- Core Chain of Draft Implementation
- Concise reasoning steps (typically 5 words or less)
- Format enforcement
- Answer extraction
- Performance Analytics
- Token usage tracking
- Solution accuracy monitoring
- Execution time measurement
- Domain-specific performance metrics
- Adaptive Word Limits
- Automatic complexity estimation
- Dynamic adjustment of word limits
- Domain-specific calibration
- Comprehensive Example Database
- CoT to CoD transformation
- Domain-specific examples (math, code, biology, physics, chemistry, puzzle)
- Example retrieval based on problem similarity
- Format Enforcement
- Post-processing to ensure adherence to word limits
- Step structure preservation
- Adherence analytics
- Hybrid Reasoning Approaches
- Automatic selection between CoD and CoT
- Domain-specific optimization
- Historical performance-based selection
- OpenAI API Compatibility
- Drop-in replacement for standard OpenAI clients
- Support for both completions and chat interfaces
- Easy integration into existing workflows
Setup and Installation
Prerequisites
- Python 3.10+ (for Python implementation)
- Node.js 18+ (for JavaScript implementation)
- Anthropic API key
Python Installation
- Clone the repository
- Install dependencies:Copy
- Configure API keys in
.env
file:Copy - Run the server:Copy
JavaScript Installation
- Clone the repository
- Install dependencies:Copy
- Configure API keys in
.env
file:Copy - Run the server:Copy
Claude Desktop Integration
To integrate with Claude Desktop:
- Install Claude Desktop from claude.ai/download
- Create or edit the Claude Desktop config file:Copy
- Add the server configuration (Python version):Or for the JavaScript version:CopyCopy
- Restart Claude Desktop
You can also use the Claude CLI to add the server:
Available Tools
The Chain of Draft server provides the following tools:
Tool | Description |
---|---|
chain_of_draft_solve | Solve a problem using Chain of Draft reasoning |
math_solve | Solve a math problem with CoD |
code_solve | Solve a coding problem with CoD |
logic_solve | Solve a logic problem with CoD |
get_performance_stats | Get performance stats for CoD vs CoT |
get_token_reduction | Get token reduction statistics |
analyze_problem_complexity | Analyze problem complexity |
Developer Usage
Python Client
If you want to use the Chain of Draft client directly in your Python code:
JavaScript Client
For JavaScript/Node.js applications:
Implementation Details
The server is available in both Python and JavaScript implementations, both consisting of several integrated components:
Python Implementation
- AnalyticsService: Tracks performance metrics across different problem domains and reasoning approaches
- ComplexityEstimator: Analyzes problems to determine appropriate word limits
- ExampleDatabase: Manages and retrieves examples, transforming CoT examples to CoD format
- FormatEnforcer: Ensures reasoning steps adhere to word limits
- ReasoningSelector: Intelligently chooses between CoD and CoT based on problem characteristics
JavaScript Implementation
- analyticsDb: In-memory database for tracking performance metrics
- complexityEstimator: Analyzes problems to determine complexity and appropriate word limits
- formatEnforcer: Ensures reasoning steps adhere to word limits
- reasoningSelector: Automatically chooses between CoD and CoT based on problem characteristics and historical performance
Both implementations follow the same core principles and provide identical MCP tools, making them interchangeable for most use cases.
License
This project is open-source and available under the MIT license.
You must be authenticated.
Implements the Chain of Draft reasoning approach to generate minimalistic intermediate reasoning outputs while solving tasks, significantly reducing token usage while maintaining accuracy.
- Overview
- Key Benefits
- Features
- Setup and Installation
- Claude Desktop Integration
- Available Tools
- Developer Usage
- Implementation Details
- License