AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Unity Mcp Skills

mcp-batihandev-unity-mcp-skills · by batihandev

Skills and C# command recipes for AI agents controlling the Unity Editor via MCP

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add mcp-batihandev-unity-mcp-skills

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-batihandev-unity-mcp-skills)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
10d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Unity Mcp Skills? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Unity MCP Skills Library

A documentation-only skill pack for AI agents working inside Unity via the official Unity MCP. No C# plugin, no REST server, no Python client — just markdown that teaches your agent how Unity actually works.

It contains skills (per-system guardrails and routing) and recipes (ready-to-run C# IRunCommand templates) so the agent can act predictably without wrecking your scene.

> Work in progress. Things may be incomplete or rough around the edges — use with that expectation.

Requires:

  • Unity's com.unity.ai.assistant package with its Unity MCP Server enabled in Project Settings → AI → Unity MCP Server — the hard dependency that provides Unity_RunCommand and the IRunCommand contract every recipe targets. Nothing in this pack runs without it.
  • Unity 6000+ (Unity 6). Recipes use FindFirstObjectByType / FindObjectsByType; older versions are not supported.
  • Per-domain package baselines listed in each skills//SKILL.md ## Requirements block. Domain skills tell the agent how to install missing ones via Unity_PackageManager_ExecuteAction.

Install

Clone this repo as a single folder inside your agent's skills directory. The whole repo is the install unit — domain skills depend on shared helpers (recipes/_shared/), tool routing (mcp-tools.md), and fallback docs (references/) that ship together.

Claude Code

git clone https://github.com/batihandev/unity-mcp-skills.git ~/.claude/skills/unity-mcp-skills

Codex

git clone https://github.com/batihandev/unity-mcp-skills.git ~/.codex/skills/unity-mcp-skills

Antigravity / Gemini CLI

git clone https://github.com/batihandev/unity-mcp-skills.git ~/.gemini/antigravity/skills/unity-mcp-skills

Symlink alternative (for hacking on the library)

git clone https://github.com/batihandev/unity-mcp-skills.git ~/src/unity-mcp-skills
ln -s ~/src/unity-mcp-skills ~/.claude/skills/unity-mcp-skills

Update

cd /unity-mcp-skills && git pull

Uninstall

rm -rf /unity-mcp-skills

Prerequisites

  • A Unity MCP-compatible server running in your Unity Editor; the Editor must be open during use.
  • An AI agent that can read local files and execute MCP tools (e.g. Unity_RunCommand).

How discovery works

Only the top-level SKILL.md is registered with your agent — under the name unity-mcp-skills. That skill routes to domain-specific skills under skills//SKILL.md internally. You will not see unity-scene, unity-physics, etc. as separate skills in your agent — they are loaded on demand by the library.

What's in here

  • SKILL.md — the discoverable entry point; routes to the right domain.
  • skills// — per-system guidance (UI, Physics, Animation, …) telling the agent when and how to approach a task.
  • recipes// — C# IRunCommand templates the agent fills in and runs; designed to support Editor Undo/Redo.
  • recipes/_shared/ — cross-domain C# helpers embedded by recipes.
  • tooling// — install-once Editor script templates installed via Unity_CreateScript; persistent project tools (menu items, custom windows), no compile/run gate.
  • references/ — offline reference dumps used as a tertiary fallback when skills and recipes lack detail.
  • mcp-tools.md — routing matrix for native MCP tools vs Unity_RunCommand.

Format

Skills follow the superpowers skill format.

Credits

Skill library structure and data originally curated by Besty0728.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.