MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

当需要大模型仔细想想时,大模型使用这个工具

Created 4/6/2025
Updated 5 months ago
Repository documentation and setup instructions

Have a think MCP Server

English|中文

全程由 Claude 构建,相关提示词参考how-to-prompt

如何使用

  1. 确保已经安装了 python 3.10+
  2. clone 仓库
git clone https://github.com/comeonzhj/have-a-think.git
  1. 安装依赖
pip install "mcp[cli]" httpx python-dotenv
  1. 创建一个 .env 文件保存你的 DeepSeek API key:
DEEPSEEK_API_KEY=your_deepseek_api_key_here

你可以从 DeepSeek's website 获取 DeepSeek 的 Key

直接运行服务:

python have-a-think.py

安装到 Claude / windsurf / cursor / 5ir 等客户端:

{
    "mcpServers": {
      "deepseek-reasoner": {
        "command": "python",
        "args": [
          "/path/to/have-a-think/have-a-think.py"
        ],
        "env": {
          "DEEPSEEK_API_KEY": "your_deepseek_api_key_here"
        }
      }
    }
  }
Quick Setup
Installation guide for this server

Install Package (if required)

uvx have-a-think

Cursor configuration (mcp.json)

{ "mcpServers": { "comeonzhj-have-a-think": { "command": "uvx", "args": [ "have-a-think" ] } } }