blockbench-mcp-plugin
by jasonjgardner·★ 117·Score 47
A TypeScript plugin that adds MCP server functionality to Blockbench for 3D model editing.
Overview
The Blockbench MCP plugin transforms Blockbench, a 3D model editor, into an MCP server, enabling AI assistants to interact with and manipulate 3D models directly. It provides both a plugin for Blockbench and client configuration instructions for various MCP-compatible environments including VS Code, Claude Desktop, Ollama, and others. The plugin supports real-time integration between AI systems and 3D modeling workflows, allowing for automated model manipulation and generation through the MCP protocol.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this when you're working with Blockbench for 3D modeling and want AI assistance in your workflow without leaving the application.
When NOT to choose this
Don't choose this if you're not using Blockbench for 3D modeling, as this MCP server only integrates with that specific platform.
Comparable tools
Installation
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.
FAQ
- What is the default port for the Blockbench MCP server?
- The default port is :3000 with the endpoint /bb-mcp, making the full URL http://localhost:3000/bb-mcp.
- Which AI clients are compatible with this MCP server?
- The Blockbench MCP server is compatible with Claude Desktop, VS Code, Ollama, Cline, Antigravity, and OpenCode, with configuration instructions provided for each.
- Can I add custom tools to the MCP server?
- Yes, the CONTRIBUTING.md file provides instructions on how to add new tools, resources, and prompts to the server.
Compare blockbench-mcp-plugin with
Last updated · Auto-generated from public README + GitHub signals.