MCP Think Tool Server

MCP Think Tool Server

클로드의 복잡한 추론 능력을 향상시키기 위한 "생각" 도구를 구현한 모델 컨텍스트 프로토콜(MCP) 서버입니다.

개요

이 MCP 서버는 Anthropic의 "think" 도구를 구현하는데, 이 도구는 Claude에게 복잡한 문제 해결 작업 중에 체계적인 사고를 위한 전용 공간을 제공합니다. Anthropic의 블로그 게시물 에서 설명했듯이, think 도구는 정책 준수 및 긴 도구 호출 체인에서의 추론을 요구하는 복잡한 작업에서 성능을 크게 향상시키는 것으로 나타났습니다.

사용자 정의 지침

Claude에 다음 사용자 지정 지침을 추가하여 think 도구 사용을 최적화하세요.

지엑스피1

주요 사용 사례

  • 복잡한 도구 체인 : Claude가 복잡한 도구를 호출하고 출력을 신중하게 분석해야 하는 경우
  • 정책 준수 : 자세한 가이드라인을 통해 정책이 많은 환경을 탐색합니다.
  • 순차적 의사 결정 : 각 단계가 이전 단계를 기반으로 구축되고 실수가 비용이 많이 드는 경우
  • 다단계 분석 : 복잡한 문제를 관리 가능한 단계로 분해

설치

npm install -g @cgize/mcp-think-tool

구성

MCP 구성 파일에 다음 구성을 추가합니다.

{ "mcpServers": { "think-tool": { "command": "npx", "args": [ "-y", "@cgize/mcp-think-tool" ], "type": "stdio", "pollingInterval": 30000, "startupTimeout": 30000, "restartOnFailure": true } } }

구성 파일 위치:

  • C:\Users\[username]\AppData\Roaming\Claude\claude_desktop_config.json

글로벌하게 설치한 경우 다음을 사용할 수도 있습니다.

{ "mcpServers": { "think-tool": { "command": "claude-mcp-think-tool", "args": [], "type": "stdio", "pollingInterval": 30000, "startupTimeout": 30000, "restartOnFailure": true } } }

사용 가능한 도구

  • 생각하다 : 문제 해결 중 구조화된 추론을 기록하다
  • get_thoughts : 기록된 모든 생각을 검색합니다.
  • clear_thoughts : 사고 과정을 재설정합니다
  • get_thought_stats : 생각 패턴 분석

예시 프롬프트

Using the think tool, solve this multi-step problem: A train travels at a constant speed of 60 km/h. It departs from station A at 9:00 AM and arrives at station B at 11:30 AM. What is the distance between stations A and B?

특허

MIT

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Claude를 위한 Anthropic의 '생각' 도구를 구현하여 복잡한 문제 해결 작업 중에 구조화된 추론을 위한 전용 공간을 제공하여 추론 체인과 정책 준수의 성과를 개선합니다.

  1. Overview
    1. Custom Instructions
      1. Key Use Cases
        1. Installation
          1. Configuration
            1. Available Tools
              1. Example Prompt
                1. License
                  ID: js5y6ruvbx