Unity-AI-Tools-Template vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Unity-AI-Tools-Template by IvanMurzak | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 18 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | this month | this month |
Unity-AI-Tools-Template · Summary
Template for creating Unity MCP tools with initialization scripts and setup guidance.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Unity-AI-Tools-Template · Use cases
- Creating custom AI tools for Unity Editor workflows
- Developing runtime MCP tools for Unity builds
- Setting up package distribution for Unity MCP tools
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
Unity-AI-Tools-Template · Install
Installation
- Create a new repository from this template
- Clone your new repository
- Initialize project with:
``powershell ./commands/init.ps1 -PackageId "com.company.package" -PackageName "My Package" ``
- Update
package.jsonwith your package details - Generate Unity meta files by opening projects in Unity Editor
- Add your MCP tools to appropriate directories (Editor or Runtime)
- Set up CI/CD with GitHub Actions for automated testing and deployment
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything