mcp-sequential-thinking
複雑な問題を順序立てて検証可能なステップに分解し、多段階の推論やリスク軽減、依存関係を考慮した改善を行うSkill。
📜 元の英語説明(参考)
Use the sequential thinking MCP server (@modelcontextprotocol/server-sequential-thinking) to break down complex problems into ordered, testable steps; use when the task requires careful multi-step reasoning, risk reduction, or dependency-sensitive refactors.
🇯🇵 日本人クリエイター向け解説
複雑な問題を順序立てて検証可能なステップに分解し、多段階の推論やリスク軽減、依存関係を考慮した改善を行うSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o mcp-sequential-thinking.zip https://jpskill.com/download/6865.zip && unzip -o mcp-sequential-thinking.zip && rm mcp-sequential-thinking.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/6865.zip -OutFile "$d\mcp-sequential-thinking.zip"; Expand-Archive "$d\mcp-sequential-thinking.zip" -DestinationPath $d -Force; ri "$d\mcp-sequential-thinking.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
mcp-sequential-thinking.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
mcp-sequential-thinkingフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
MCPスキル: 順次思考
範囲
.vscode/mcp.json で sequentialthinking として設定された MCP サーバーを使用して、複雑な変更に対する段階的な推論成果物を作成します。
前提条件
.vscode/mcp.jsonにsequentialthinkingという名前のサーバーエントリが含まれていることを確認してください。
運用ルール
- ローカルで検証可能な、短く順序付けられたステップを優先します。
- 不明な点を明示的に指摘し、具体的な発見ステップ(ファイルの検索、AGENTS の読み取り、型エラーの検査)に変換します。
- ソリューションはオッカムの剃刀の原則に従い、実証された必要性なしに新しい抽象化を導入することは避けてください。
使用する場面
- 複数のモジュール(shell/workspace/capability/eventing/integration)にまたがるリファクタリング。
- DDD境界またはappend-before-publish契約に影響を与える可能性のある変更。
- 非決定的な動作(signals/streams、イベント順序)のデバッグ。
出力形式
- 番号付きのアクションシーケンス。
- 各アクションには、ターゲットファイル、期待される結果、および検証方法(コマンドまたは観察)が含まれます。
プロンプトテンプレート
- 「<feature> の実装について順次的に考えてください。リスク(DDD境界、イベント因果関係、signals境界)を特定し、各ステップの検証を含む最小限のステップ計画を作成してください。」
- 「このエラー/ログ: <paste> を考慮して、最小限のプローブ/変更を含む順序付けられたデバッグ計画を作成してください。」
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
MCP Skill: Sequential Thinking
Scope
Use the MCP server configured as sequentialthinking in .vscode/mcp.json to produce step-by-step reasoning artifacts for complex changes.
Preconditions
- Ensure
.vscode/mcp.jsoncontains a server entry namedsequentialthinking.
Operating Rules
- Prefer short, ordered steps that can be validated locally.
- Call out unknowns explicitly and convert them into concrete discovery steps (search files, read AGENTS, inspect type errors).
- Keep the solution Occam-simple: avoid introducing new abstractions without a demonstrated need.
When To Use
- Refactors crossing multiple modules (shell/workspace/capability/eventing/integration).
- Any change that might impact DDD boundaries or the append-before-publish contract.
- Debugging nondeterministic behavior (signals/streams, event ordering).
Output Shape
- A numbered sequence of actions.
- Each action includes: target file(s), expected outcome, and how to verify (command or observation).
Prompt Templates
- "Think sequentially about implementing <feature>. Identify risks (DDD boundaries, event causality, signals boundary) and produce a minimal step plan with verification per step."
- "Given this error/log: <paste>, produce an ordered debug plan with the smallest set of probes/changes."