{"id":30070939,"url":"https://github.com/CoplayDev/unity-mcp","last_synced_at":"2025-08-08T12:07:10.309Z","repository":{"id":283066874,"uuid":"950564038","full_name":"CoplayDev/unity-mcp","owner":"CoplayDev","description":"A Unity MCP server that allows MCP clients like Claude Desktop or Cursor to perform Unity Editor actions.","archived":false,"fork":false,"pushed_at":"2025-08-08T01:05:42.000Z","size":361,"stargazers_count":2738,"open_issues_count":60,"forks_count":374,"subscribers_count":39,"default_branch":"master","last_synced_at":"2025-08-08T03:10:44.473Z","etag":null,"topics":["ai","ai-integration","anthropic","claude","claude-co","copilot","cursor","deepseek","game-development","gemini","llm","mcp","model-context-protocol","openai","unity","unity3d"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CoplayDev.png","metadata":{"files":{"readme":"README-DEV.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"justinpbarnett","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2025-03-18T11:01:58.000Z","updated_at":"2025-08-08T01:54:46.000Z","dependencies_parsed_at":"2025-04-03T18:11:03.544Z","dependency_job_id":"02fea1ab-ef6b-4217-b05f-e19972c6ceca","html_url":"https://github.com/CoplayDev/unity-mcp","commit_stats":null,"previous_names":["justinpbarnett/unity-mcp","coplaydev/unity-mcp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/CoplayDev/unity-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoplayDev%2Funity-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoplayDev%2Funity-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoplayDev%2Funity-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoplayDev%2Funity-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CoplayDev","download_url":"https://codeload.github.com/CoplayDev/unity-mcp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CoplayDev%2Funity-mcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269417540,"owners_count":24413384,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","ai-integration","anthropic","claude","claude-co","copilot","cursor","deepseek","game-development","gemini","llm","mcp","model-context-protocol","openai","unity","unity3d"],"created_at":"2025-08-08T12:02:35.809Z","updated_at":"2025-08-08T12:07:10.299Z","avatar_url":"https://github.com/CoplayDev.png","language":"C#","readme":"# Unity MCP Development Tools\n\nWelcome to the Unity MCP development environment! This directory contains tools and utilities to streamline Unity MCP core development.\n\n## 🚀 Available Development Features\n\n### ✅ Development Deployment Scripts\nQuick deployment and testing tools for Unity MCP core changes.\n\n### 🔄 Coming Soon\n- **Development Mode Toggle**: Built-in Unity editor development features\n- **Hot Reload System**: Real-time code updates without Unity restarts  \n- **Plugin Development Kit**: Tools for creating custom Unity MCP extensions\n- **Automated Testing Suite**: Comprehensive testing framework for contributions\n- **Debug Dashboard**: Advanced debugging and monitoring tools\n\n---\n\n## Development Deployment Scripts\n\nThese deployment scripts help you quickly test changes to Unity MCP core code.\n\n## Scripts\n\n### `deploy-dev.bat`\nDeploys your development code to the actual installation locations for testing.\n\n**What it does:**\n1. Backs up original files to a timestamped folder\n2. Copies Unity Bridge code to Unity's package cache\n3. Copies Python Server code to the MCP installation folder\n\n**Usage:**\n1. Run `deploy-dev.bat`\n2. Enter Unity package cache path (example provided)\n3. Enter server path (or use default: `%LOCALAPPDATA%\\Programs\\UnityMCP\\UnityMcpServer\\src`)\n4. Enter backup location (or use default: `%USERPROFILE%\\Desktop\\unity-mcp-backup`)\n\n### `restore-dev.bat`\nRestores original files from backup.\n\n**What it does:**\n1. Lists available backups with timestamps\n2. Allows you to select which backup to restore\n3. Restores both Unity Bridge and Python Server files\n\n## Finding Unity Package Cache Path\n\nUnity package cache is typically located at:\n```\nX:\\UnityProject\\Library\\PackageCache\\com.justinpbarnett.unity-mcp@1.0.0\n```\n\nTo find it:\n1. Open Unity Package Manager\n2. Select \"Unity MCP\" package\n3. Right click on the package and \"Show in Explorer\"\n4. Navigate to the path above with your username and version\n\n## Workflow\n\n1. **Make changes** to your source code in this directory\n2. **Deploy** using `deploy-dev.bat`\n3. **Test** in Unity (restart Unity Editor first)\n4. **Iterate** - repeat steps 1-3 as needed\n5. **Restore** original files when done using `restore-dev.bat`\n\n\n## Troubleshooting\n\n### \"Path not found\" errors running the .bat file\n- Verify Unity package cache path is correct\n- Check that Unity MCP package is actually installed\n- Ensure server is installed via MCP client\n\n### \"Permission denied\" errors\n- Run cmd as Administrator\n- Close Unity Editor before deploying\n- Close any MCP clients before deploying\n\n### \"Backup not found\" errors\n- Run `deploy-dev.bat` first to create initial backup\n- Check backup directory permissions\n- Verify backup directory path is correct","funding_links":["https://github.com/sponsors/justinpbarnett"],"categories":["Gaming and Game Development","📚 Projects (1974 total)","C# #","MCP Ecosystem"],"sub_categories":["MCP Servers","Servers"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCoplayDev%2Funity-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCoplayDev%2Funity-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCoplayDev%2Funity-mcp/lists"}