https://github.com/jasonjgardner/blockbench-mcp-project
Example project using the Blockbench MCP plugin
https://github.com/jasonjgardner/blockbench-mcp-project
blockbench blockbench-plugin mcp
Last synced: 10 months ago
JSON representation
Example project using the Blockbench MCP plugin
- Host: GitHub
- URL: https://github.com/jasonjgardner/blockbench-mcp-project
- Owner: jasonjgardner
- License: apache-2.0
- Created: 2025-07-26T14:11:50.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-27T15:33:42.000Z (11 months ago)
- Last Synced: 2025-08-13T21:55:24.749Z (11 months ago)
- Topics: blockbench, blockbench-plugin, mcp
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blockbench MCP Sample Project
This repository serves as a template or example of how to create a workspace which sets up the [Blockbench MCP server](https://github.com/jasonjgardner/blockbench-mcp-plugin/) for success.
> __Note:__ In this example repository, the MCP port in Blockbench is set to __`3000`__ and the endpoint is __`bb-mcp`__. These are the default values, but can be changed within the plugin's settings in Blockbench.
## Start Blockbench
Desktop version of Blockbench must be running in the background.
## IDE Setup Examples
### VS Code
See the files in the [.vscode](./.vscode) and [.github](./.github) directories.
### Claude Code
```bash
claude mcp add blockbench npx mcp-remote http://localhost:3000/bb-mcp
```
### Cline
__cline_mcp_settings.json__
```json
{
"mcpServers": {
"blockbench": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://localhost:3000/bb-mcp"
]
}
}
}
```