Chain of Thought MCP Server
@beverm2391
关于 Chain of Thought MCP Server
An mcp server to inject raw chain of thought tokens from a reasoning model.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"chain_of_thought": {
"command": "uv",
"args": [
"--directory",
"path/to/cot-mcp-server",
"run",
"src/server.py"
],
"env": {
"GROQ_API_KEY": ""
}
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Chain of Thought MCP Server?
Chain of Thought MCP Server implements an external "think" tool that uses Groq’s API to call the Qwen qwq model, exposing raw chain-of-thought tokens to improve AI performance in complex tool-use situations. It is designed for developers who want to inject structured reasoning into their AI agents.
How to use Chain of Thought MCP Server?
Clone the repository, run uv sync to install dependencies, obtain a Groq API key, and add the server to your MCP configuration using the uv command with the source directory path and your API key. Instruct your AI (e.g., through agent rules) to call the chain_of_thought tool on every request as a scratchpad for planning and verification.
Key features of Chain of Thought MCP Server
- Exposes raw chain-of-thought tokens from Qwen’s qwq model via Groq.
- Boosts performance on complex tool‑use benchmarks like SWE‑Bench.
- Acts as a scratchpad for rule verification and planning.
- Integrates easily with any MCP‑compatible AI agent.
- Simple installation with
uv syncand one environment variable.
Use cases of Chain of Thought MCP Server
- Automating multi‑step workflows (e.g., flight cancellations, bookings).
- Validating compliance with business rules before taking action.
- Iterating over tool results for correctness in sensitive operations.
- Providing transparent reasoning paths for debugging AI decisions.
- Enhancing Claude or other agents with structured thinking steps.
FAQ from Chain of Thought MCP Server
What makes this server different from a simple prompt?
It forces the agent to output a structured chain of thought in a separate tool call, which has been shown to improve performance on complex tasks by requiring explicit planning and verification before action.
What are the runtime dependencies?
Python, uv, a Groq API key, and a locally cloned copy of the repository.
Where does user data or reasoning live?
All processing occurs locally on your machine; the Groq API receives only the prompts you configure, and no persistent data storage is described.
Are there any known limits?
The README does not mention specific limits, but performance depends on Groq API rate limits and the qwq model’s context window.
How is transport and authentication handled?
Transport is STDIO (the MCP default), and authentication uses a Groq API key set via the GROQ_API_KEY environment variable.
其他 分类下的更多 MCP 服务器
Mobile Mcp
mobile-nextModel Context Protocol Server for Mobile Automation and Scraping (iOS, Android, Emulators, Simulators and Real Devices)
Codelf
unbugA search tool helps dev to solve the naming things problem.
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
评论