blockbench-mcp-plugin vs everything
Side-by-side comparison to help you pick between these two MCP servers.
blockbench-mcp-plugin by jasonjgardner | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 117 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMediaAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
blockbench-mcp-plugin · Summary
A TypeScript plugin that adds MCP server functionality to Blockbench for 3D model editing.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
blockbench-mcp-plugin · Use cases
- AI-assisted 3D model editing and manipulation in Blockbench
- Automated texture generation for 3D models
- Integration of AI model generation tools with 3D workflows
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
blockbench-mcp-plugin · Install
Installation
1. Install the Blockbench Plugin
Open Blockbench desktop, go to File > Plugins, click 'Load Plugin from URL' and paste: https://jasonjgardner.github.io/blockbench-mcp-plugin/mcp.js
2. Configure the MCP Server
In Blockbench settings: Settings > General > set MCP Server Port and MCP Server Endpoint (default: :3000/bb-mcp)
3. Configure MCP Client
**Claude Desktop:** Add to claude_desktop_config.json:
{
"mcpServers": {
"blockbench": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:3000/bb-mcp"]
}
}
}**VS Code:** Create .vscode/mcp.json:
{
"servers": {
"blockbench": {
"url": "http://localhost:3000/bb-mcp",
"type": "http"
}
}
}**Other clients:** See README for configuration options for Ollama, Cline, Antigravity, and OpenCode.
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