ai-forge-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ai-forge-mcp by HurtzDonutStudios | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 59 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | — | TypeScript |
| Last commit | 1 mo ago | this month |
ai-forge-mcp · Summary
Comprehensive MCP package with 565 tools controlling AAA game asset pipeline across 16 servers.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ai-forge-mcp · Use cases
- Solo indie developers creating AAA-quality game assets without hiring a team
- Small studios multiplying their output by automating the asset pipeline
- Game jammers and prototypers needing production-quality assets quickly
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
ai-forge-mcp · Install
Installation
The AI Forge MCP Package is a subscription service. Follow these steps to get started:
- Visit the [ForgeRoom web console](https://forgeroom.hurtzdonut.com) or download the desktop app
- Create an account and select your subscription tier
- Complete the first-launch wizard which will auto-detect your installed DCC applications (Blender, UE5, etc.)
- The installer will automatically deploy the necessary bridge plugins
- Configure MCP servers in your Claude Desktop client:
{
"mcpServers": {
"ai-forge": {
"command": "npx",
"args": ["@hurtzdonut/ai-forge-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