prefab-sentinel
Prefab Sentinel
用于安全检查和编辑 Unity / VRChat 项目的 Prefab / Scene / Asset 的 MCP 服务器。
通过结构化响应诊断 Variant 的 override 冲突、Broken PPtr / missing fileID、Udon / ClientSim 运行时异常,并绕过手工 YAML 编辑进行修复。面向 AI 代理设计。
基于 YAML 的只读路径(validate_refs / validate_materials / inspect_wiring / inspect_variant / inspect_hierarchy / find_referencing_assets 等)无需启动 Unity 即可完成。inspect_serialized_surface / inspect_with_profile / validate_inspector_profile 通过常驻 Editor Bridge 获取 last-saved SerializedObject surface。写入路径(patch_apply / set_property / editor_* 等)通过 file-IPC 与常驻 Editor Bridge 协作,缺少 confirm=True + 非空 change_reason 审计对的调用将以 CHANGE_REASON_REQUIRED 被拒绝。
公开的 MCP 边界仅提供 Tools capability。stdio 支持 modern 2026-07-28 以及两个 legacy revision(2025-11-25 / 2025-06-18),任意 HTTP 路径仅在本地 loopback 的 /mcp 上提供 modern 2026-07-28。这不是 full conformance 的合格声明,protocol error 的优先级和 stdio transport 例外以 docs/api-reference.md 为准,严格 CI gate 的覆盖范围以 TESTING.md 为准,process-state 的已知偏差以 ARCHITECTURE.md 为准。对应的 request method 和 transport 请参阅 docs/tool-conventions.md、docs/execution-reference.md。
本 README 是各专业文档的入口(参见文档地图)。规范的正本为专业文档群,运维规则的正本为 AGENTS.md。
做 / 不做
做
提供 Unity SerializedObject 级别的安全编辑基础,使 Prefab Base / Variant / Scene 实例的有效值可追踪
将引用解析(GUID + fileID)和一致性验证 API 化
将运行时验证(UdonSharp compile / ClientSim smoke / 日志分类)流水线化
使用确定性的 synthetic workload 和固定 budget 检测主要 inspection path 的 latency regression
明确区分需要人工判断的更改和可机械执行的更改
内置 ModularAvatar / liltoon / VRCFury 等 VRChat 生态系统工具的领域知识,作为 AI 代理的判断依据
将运维流程标准化为 Skills(支持 Claude Code / Codex CLI 两种宿主)
不做
不将 YAML 字符串的直接替换作为标准手段
不通过推测补全 Unity 内部引用
不进行无变更依据的自动优化
不使用真实项目作为 timing gate,也不从 weekly benchmark 自动更新 baseline
不擅自应用需要用户判断的规格变更
不公开 legacy HTTP、早于
2025-06-18的 legacy protocol version、remote / shared HTTP server
Related MCP server: unity-asset-reference-mcp
Quickstart
作为插件引入。根据宿主(Claude Code / Codex CLI)有两条路径,均从 marketplace 获取。
Claude Code(在 Claude Code 内输入的斜杠命令):
/plugin marketplace add tyunta/prefab-sentinel
/plugin install prefab-sentinel@tyunta-prefab-sentinelCodex CLI(在 shell 中注册 marketplace → 在 Codex CLI 内的 /plugins TUI 中启用):
codex plugin marketplace add tyunta/prefab-sentinel注册后,在 Codex CLI 内打开 /plugins,从列表中选择 prefab-sentinel 并 Install(不存在 codex plugin install 这样的 shell 命令)。
引入后的使用方法以 guide 技能(/prefab-sentinel:guide)为入口 — 汇总了 MCP 工具列表和调用方法、补丁模式、Editor Bridge 的设置、生态系统知识指南。实际调用 MCP 工具的是 AI 代理一侧,因此让代理参考此 guide 即可开始使用。
各路径的详细信息请参阅设置,面向从仓库直接启动 MCP 服务器的开发者的步骤请参阅 CONTRIBUTING.md。
设置
前提条件
Python 3.11 以上
Unity 2022.3 + VRChat SDK 3.x(Worlds / Avatars)— 通过 Editor Bridge 的写入和运行时验证路径需要
MCP 服务器在 Plugin 内部通过 uv / uvx 本地启动,因此 Plugin 引入路径也需要 Python / uv。宿主(Claude Code / Codex CLI)和本工具支持 Windows / macOS / Linux。
Claude Code Plugin
通过 Quickstart 中的 2 条命令引入。安装后 MCP 服务器、6 个技能、knowledge/ 目录会一并展开,可直接从 Claude Code 调用 /prefab-sentinel:guide 等技能。各技能内的命令通过 ${CLAUDE_PLUGIN_ROOT} 模板变量在本地执行。
Codex CLI Plugin
按 Quickstart 的步骤引入(在 shell 中执行 codex plugin marketplace add → 在 Codex CLI 内的 /plugins TUI 中 Install prefab-sentinel)。MCP 服务器从 Plugin 定义(.codex-plugin/plugin.json 的 mcpServers 指向的 .codex-plugin/mcp.json)注册,packaged MCP definition 也提供所需的 modern protocol marker。skill bundle 同时展开。Codex 的 MCP 服务器由 uvx 从 GitHub 获取本体后启动,因此启动时需要网络连接(Claude Code 路径从本地安装物启动)。更新 Plugin 后请重启 Codex CLI 会话。禁用和注销通过 /plugins TUI 进行。
技能
技能 | 调用 | 说明 |
guide |
| MCP 工具参考・补丁模式・Bridge 设置・生态系统知识指南 |
variant-safe-edit |
| Prefab Variant 的安全编辑工作流 |
prefab-reference-repair |
| 损坏引用的检测・修复工作流 |
udon-log-triage |
| 运行时日志的分类处理工作流 |
knowledge-acquisition |
| VRChat 生态系统工具的知识调研・积累 |
inspector-profile-authoring |
| 从 last-saved SerializedObject surface 和源码依据创建・修复 project-local Inspector profile 的工作流 |
Unity Bridge
补丁实际应用、运行时验证等写入路径,以及处理 last-saved SerializedObject surface 的 Inspector profile 路径,通过 file-IPC 与常驻在 Unity Editor 内的 Editor Bridge 协作。Bridge 的设置步骤在 /prefab-sentinel:guide 技能中,指定 watch 目录的环境变量 UNITYTOOL_BRIDGE_WATCH_DIR 记载于 CONFIGURATION.md。未设置时调用写入类工具将以 BRIDGE_WATCH_DIR_MISSING、调用 Inspector profile 工具将以 INSPECTOR_SURFACE_UNAVAILABLE 进行 fail-fast 停止。基于 YAML 的只读检查不需要 Bridge 设置。
Python wheel 仅将 tools/unity/ 和 knowledge/ 的发布对象映射到 package 内,不包含 nested .serena 等 workspace-local metadata。
代表性 MCP 工具
所有 MCP 工具的规范目录为 docs/tools.md,响应信封(success / severity / code / message / data / diagnostics)和错误代码的规范为 docs/api-reference.md。下表仅列出代表性工具。
工具 | 说明 |
| 项目范围设置 + 缓存预热(在服务器进程启动后调用) |
| 扫描损坏的 GUID / fileID 引用 |
|
|
| YAML 内部结构的验证(fileID 重复、Transform 一致性) |
| MonoBehaviour 字段配线分析(带 null 引用分类) |
| Prefab Variant 的 override 链分析 |
| saved YAML 的 GameObject 层级显示。通过 |
| 离线比较 |
| 在一次响应中获取 Button / Slider / Toggle 的 UnityEvent persistent listener entries 与 UdonSharp 诊断 |
| 按 GUID / 路径搜索引用源资源 |
| 补丁计划的验证与应用。exactly one |
| AssetDatabase-backed 资源删除的 dry-run / confirm。删除后返回 broken-reference delta |
| RenderTexture generated asset 的创建与 AssetDatabase.MoveAsset-backed 资源移动。公开工具列表以 docs/tools.md 为准,payload/error 以 docs/api-reference.md 为准,confirm audit/report requirements 以 CONFIGURATION.md 为准,live Unity smoke 以 TESTING.md 为准 |
| 默认 |
| 通过 Editor Bridge 的只读实时几何检查 |
| SerializedObject-backed 通用 inspector / writer API。公开工具列表以 docs/tools.md 为准,payload 与错误码以 docs/api-reference.md 为准 |
| last-saved raw Inspector surface 与 project-local declarative profile。三个工具均为只读,但以常驻 Editor Bridge 为前提。工具以 docs/tools.md 为准,envelope/error 以 docs/api-reference.md 为准,profile path/writer gates 以 CONFIGURATION.md 为准,live Unity protocol 以 TESTING.md 为准,author/repair procedure 以 skills/inspector-profile-authoring/SKILL.md 为准 |
| 通过 Editor Bridge 进行 Scene / Hierarchy / Component / BlendShape / Animation 编辑、截图、Console、UdonSharp field / array write |
Routine CI / agent validation 使用 validate_runtime(profile="compile_only") 或 validate_runtime(profile="editor_console_only")。ClientSim 是面向 submission scene 的显式 opt-in,在 profile="clientsim" + audit pair 齐备且 requested scene 为 sole loaded active scene 时才执行。详细的 cleanup/restore/side-effect 契约以 docs/api-reference.md 和 docs/execution-reference.md 为准。
基于 YAML 的只读检查(validate_refs / validate_materials / inspect_wiring / inspect_variant / inspect_hierarchy / find_referencing_assets 等)无需 Unity。Inspector profile 的 3 个工具虽然是只读的,但以常驻 Editor Bridge 为前提,editor_* 系列和 patch_apply 的 confirm 应用也使用同一个 Bridge。
validate_refs / inspect_wiring / validate_all_wiring / validate_structure / validate_materials 读取项目根目录的 config/diagnostics_baseline.json,将 diagnostics 分类为 new / known / resolved。baseline 不会自动生成或隐式更新,只有显式的 update_diagnostics_baseline 负责 preview / audit-gated 写入。baseline 文件格式以 CONFIGURATION.md 为准,响应形状与 update 工具契约以 docs/api-reference.md 为准,公开工具列表以 docs/tools.md 为准。
推荐流程:用 validate_refs 早期检测引用损坏 → 用 inspect_variant 将 override 冲突作为实际生效值可视化 → patch_apply 的 dry-run → 应用时指定 confirm=True + change_reason;在 exactly one open Prefab transaction 中,还可指定 out_report 以带审计日志应用。
VRChat 生态系统知识
在 knowledge/ 目录中按 3 个级别(L1 概念 / L2 操作模式 / L3 SerializedProperty)积累 ModularAvatar / liltoon / VRCFury / AvatarOptimizer 等领域知识,并随插件一起分发。guide 技能引导查阅,AI 代理根据任务从 knowledge/ 读取相应知识。知识的调研与扩充通过 knowledge-acquisition 技能进行。编辑规范见 knowledge/STYLE_GUIDE.md。
文档地图
规格说明分散存放在专业文档中。按目的区分的入口如下表所示。
文档 | 内容 |
架构概览・层职责・服务规格・数据模型・术语表 | |
全部 MCP 工具的权威目录 | |
MCP protocol / result 边界,以及工具地址表示・参数命名・是否需要审计对的规范 | |
MCP protocol error、工具响应信封、domain error code 的权威来源 | |
MCP transport / 启动方法 / smoke-batch / 基准测试 / patch 模式 / 报告输出格式 | |
单元 / 集成 / 回归 / mutation 测试的执行步骤与测试策略 | |
| |
| |
Bridge 信封 / Unity Console / broken reference 的调查步骤 | |
开发环境・MCP 服务器直接启动・测试・提交规范・PR 流程 | |
运维规则与判断标准的权威来源 | |
面向 AI 代理的 onboarding(首个参考点) | |
变更历史 |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceA runtime inspection and automation toolkit that enables MCP clients to interact with live Unity game sessions through a dedicated bridge plugin. It allows users to browse scene hierarchies, inspect component fields, search text elements, and modify game object properties in real-time.5MIT
- AlicenseNot gradedqualityBmaintenanceIndexes Unity project assets into a SQLite reference graph and provides an MCP server for querying asset dependencies, references, unused assets, and broken references.354MIT
- FlicenseAqualityBmaintenanceA proxy MCP server that wraps MCP-for-Unity, correcting transport inaccuracies and restricting tool usage for reliable Unity integration.14
- AlicenseNot gradedqualityAmaintenanceRead-only MCP server that provides AI agents with context about Unity project relationships, including scenes, prefabs, scripts, GUIDs, and code impact analysis.2Apache 2.0
Related MCP Connectors
2,000+ MCP servers read at source level. Know what one does before you connect. Free, no key.
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tyunta/prefab-sentinel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server