godot-mcp: Skill for Claude Code

.claude/skills/mcp-orchestration/SKILL.md

mcp-orchestration is a skill for Claude Code from hhhh124hhhh/godot-mcp. It costs 35 tokens per session (2,596 once invoked), scanned A, original, MIT.

A workflow skill for coordinating multiple MCP tools, which are connected tools that an AI agent can call. It supports running tool calls one after another, at the same time, conditionally, or repeatedly.

In plain words
What is it for?
It helps combine browser performance analysis, documentation searches, step-by-step problem solving, Godot checks and fixes, and other skills into a single workflow.
Why use it?
It helps break complex development work into coordinated steps when documentation lookup, debugging, reasoning, game-engine work, or other tools depend on one another.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

This is hhhh124hhhh/godot-mcp's own configuration. It tells Claude Code how to work on godot-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything godot-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to hhhh124hhhh/godot-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/hhhh124hhhh/godot-mcp/main/.claude/skills/mcp-orchestration/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/hhhh124hhhh/godot-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mcp-orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/mcp-orchestration/github.svg)](https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/mcp-orchestration)
Your own site
<a href="https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/mcp-orchestration"><img src="https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/mcp-orchestration/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mcp-orchestration

Your own site · 80×15
<a href="https://agentmods.dev/skills/hhhh124hhhh/godot-mcp/mcp-orchestration"><img src="https://agentmods.dev/badge/skills/hhhh124hhhh/godot-mcp/mcp-orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,596 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.02596
Opus 5 $0.00017 $0.01298
Sonnet 5 $0.00007 $0.00519
Haiku 4.5 $0.00003 $0.00260

Measured 11d ago against content hash f29bd9f037c7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

mcp-orchestration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/mcp-orchestration/SKILL.md · 360 lines

How it starts

The opening of the file, as written. The whole thing — 360 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP工具编排技能

指令

当用户需要执行复杂的开发任务或需要多个工具协作时,自动进行MCP工具编排:

触发条件

  • 需要多步骤的复杂开发流程
  • 涉及多个技术栈或工具链
  • 需要性能分析、代码审查、文档查询等组合操作
  • 项目设置、部署、优化等综合任务

MCP工具使用说明

此技能主要使用以下MCP工具:

  • Chrome DevTools MCP - Web开发和调试工具,用于性能分析和网络监控
  • Sequential Thinking MCP - 逐步推理和问题分解工具,用于逻辑分析和步骤规划
  • Context7 MCP - 自动文档研究和信息检索工具,用于获取技术文档和最佳实践
  • Godot MCP - Godot引擎集成工具,用于场景编辑和脚本生成
  • Skill MCP - 技能调用和管理工具,用于协调其他技能的执行

MCP调用方式

# 并行调用多个MCP工具
const [performance, docs, thinking] = await Promise.all([
  chromeDevToolsMCP.analyze_performance(),
  context7MCP.search('best practices'),
  sequentialThinkingMCP.analyze_problem()
]);

# 串行调用MCP工具
const version = await godotMCP.detect_godot_version();
const analysis = await godotMCP.check_compatibility(code);
const fixes = await godotMCP.fix_issues(analysis.issues);

# 技能内调用其他技能
await useSkill('context7-auto-research', { query: 'user query' });
await useSkill('godot-compatibility-checker', { action: 'check_version' });

支持的MCP工具

已配置工具

  1. Chrome DevTools MCP - Web开发和调试工具
  2. Sequential Thinking MCP - 逐步推理和问题分解
  3. Context7 MCP - 自动文档研究和信息检索
  4. Godot MCP - Godot引擎集成工具

编排模式

1. 串行模式 - 逐步执行

适用于需要严格步骤顺序的任务,确保每步完成后再进行下一步。

示例: Godot项目升级工作流

async function godotProjectUpgrade() {
  // 步骤1: 版本检测
  const version = await useSkill('godot-compatibility-checker', {
    action: 'detect_version'
  });

  // 步骤2: 兼容性分析
  const analysis = await useSkill('godot-compatibility-checker', {
    action: 'analyze_compatibility',
    targetVersion: '4.x'
  });

  // 步骤3: 自动修复
  const fixes = await useSkill('godot-compatibility-checker', {
    action: 'fix_issues',
    issues: analysis.criticalIssues
  });

  // 步骤4: 验证结果
  const validation = await useSkill('godot-compatibility-checker', {
    action: 'validate_fixes'
  });

  return validation;
}

2. 并行模式 - 同时执行

适用于可同时执行的独立任务,提高执行效率。

示例: 项目综合分析

async function comprehensiveProjectAnalysis() {
  const [performance, security, documentation] = await Promise.all([
    useSkill('chrome-devtools', { action: 'analyze_performance' }),
    useSkill('context7-auto-research', {
      query: 'security best practices for web applications'
    }),
    useSkill('sequential-thinking', {
      task: 'analyze project architecture and suggest improvements'
    })
  ]);

  return {
    performance: performance.metrics,
    security: security.recommendations,
    architecture: documentation.suggestions
  };
}

Read the full file on GitHub · 360 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 360 lines · 35 tokens per session scan A f29bd9f037c7

Subscribe to this mod's changes

mcp-orchestration is a skill published in the GitHub repository hhhh124hhhh/godot-mcp (42 stars, last pushed 9mo ago), licensed MIT. It adds 35 tokens to every session and 2,596 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens