glade-mcp-unity vs everything
Side-by-side comparison to help you pick between these two MCP servers.
glade-mcp-unity by Glade-tool | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 132 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | this month | this month |
glade-mcp-unity · Summary
A comprehensive Unity MCP server with 235+ tools, script search, and asset pipeline.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
glade-mcp-unity · Use cases
- Unity developers getting AI assistance directly in their IDE
- Game design documentation implementation in Unity projects
- Free asset discovery and integration for game prototypes
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
glade-mcp-unity · Install
Installation
1. Install the Unity package
In Unity: **Window > Package Manager > + > Add package from git URL...**
https://github.com/Glade-tool/glade-mcp-unity.git?path=/unity-bridgeThe Unity bridge starts automatically on localhost:8765.
2. Connect your AI client
Install [uv](https://docs.astral.sh/uv/getting-started/installation/) and add the MCP config to your AI client.
**Claude Desktop:**
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"gladekit-unity": {
"command": "uvx",
"args": ["gladekit-mcp"]
}
}
}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