About Blockbench MCP Plugin
Blockbench MCP Plugin is an MCP server published by jasonjgardner in the Developer Tools category: adds MCP server to Blockbench. It has been installed 0 times through Conduid.
The repository has 62 stars and 12 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx blockbench-mcp-pluginThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Blockbench MCP Plugin
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
Releases
README
Blockbench MCP
https://github.com/user-attachments/assets/ab1b7e63-b6f0-4d5b-85ab-79d328de31db
Plugin Installation
Open the desktop version of Blockbench, go to File > Plugins and click the "Load Plugin from URL" and paste in this URL:
https://jasonjgardner.github.io/blockbench-mcp-plugin/mcp.js
Model Context Protocol Server
Configure the MCP server under Blockbench settings: Settings > General > MCP Server Port and MCP Server Endpoint
The following examples use the default values of :3000/bb-mcp
Installation
VS Code
.vscode/mcp.json
{
"servers": {
"blockbench": {
"url": "http://localhost:3000/bb-mcp",
"type": "http"
}
}
}
Claude Desktop
claude_desktop_config.json
{
"mcpServers": {
"blockbench": {
"command": "npx",
"args": ["mcp-remote", "http://localhost:3000/bb-mcp"]
}
}
}
Claude Code
claude mcp add blockbench --transport http http://localhost:3000/bb-mcp
Antigravity
{
"mcpServers": {
"blockbench": {
"serverUrl": "http://localhost:3000/bb-mcp"
}
}
}
Cline
cline_mcp_settings.json
{
"mcpServers": {
"blockbench": {
"url": "http://localhost:3000/bb-mcp",
"type": "streamableHttp",
"disabled": false,
"autoApprove": []
}
}
}
Ollama
uvx ollmcp -u http://localhost:3000/bb-mcp
Recommended: jonigl/mcp-client-for-ollama
OpenCode
opencode mcp add
Usage
See sample project for prompt examples.
Skills
Use Agent Skills to orchestrate tool usage.
Plugin Development
See CONTRIBUTING.md for detailed instructions on setting up the development environment and how to add new tools, resources, and prompts.
README mirrored from the source repository 4 days ago. The original is authoritative.