blockbench-mcp-plugin vs time
Side-by-side comparison to help you pick between these two MCP servers.
blockbench-mcp-plugin by jasonjgardner | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 117 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMediaAI / LLM Tools | ProductivityDeveloper ToolsCommunication |
| 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.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
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
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
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.
time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}