DreamScape: Browser-Based 3D World Builder Powered by Claude Code and MCP

What DreamScape Does
DreamScape is a browser-based 3D world builder powered entirely by Claude Code through the Model Context Protocol (MCP). Users describe what they want in natural language (e.g., "add a castle on that hilltop," "spawn a dragon and make it fly around") and Claude builds it while they're standing in the scene.
Technical Implementation
The system uses Claude Code to control 30 MCP tools that handle:
- Terrain generation
- Procedural model creation via Blender
- Lighting and weather systems
- Physics and animations
- Scripting and component management
- Asset uploads
Key MCP Integration Features
From a Claude/MCP perspective, several technical details stand out:
- Claude sees the full scene graph and spatial layout before placing anything
- It can attach PlayCanvas scripts to entities for behaviors like patrol paths, physics interactions, and particle effects
- The
dreamscape_evaltool lets Claude execute arbitrary JavaScript in the 3D runtime and read results back dreamscape_validate_placementchecks ground contact via raycast before placing objects- Claude handles entity metadata, component management, and asset uploads through discrete MCP tools
Collaboration and Interaction
The platform includes voice chat integration where users can speak to Claude in the scene and receive TTS responses. Multiple people can join the same session and watch Claude build in real time. The source mentions an active multiplayer session featuring a boss fight with a weaponed dragon.
The tool is currently free with no signup wall. The developers are seeking feedback on how Claude handles spatial reasoning and multi-step scene construction, particularly from those experimenting with MCP tool use.
📖 Read the full source: r/ClaudeAI
👀 See Also

Reflect MCP Server Implements Reflexion Paper for Persistent Coding Agent Memory
A developer implemented the Reflexion paper (Shinn et al., NeurIPS 2023) as an MCP server to give local coding agents persistent memory of their mistakes. The system uses regex-based pattern matching on error messages and stores lessons in SQLite with FTS5.

Two Claude Code Skills for Managing CLAUDE.md Configuration
A developer built two Claude Code skills to handle CLAUDE.md configuration: /cc-init creates lean configs for new projects, and /cc-optimize analyzes existing projects for bloat and issues. Both aim to reduce context overhead and improve instruction following.

LLMSpend: Open-source cost tracker for Anthropic and OpenAI SDKs
LLMSpend is a Python library that adds cost tracking to Anthropic and OpenAI SDK calls with two lines of code. It provides local SQLite storage, CLI reporting, and a web dashboard without sending data externally.

9 Building Blocks for Running Claude Code as a Persistent OS Across 18 Businesses
One developer runs 18 Claude Code instances as a shared OS with selective sync, state moved to MCP servers, receipt-based verification, and auto-loading rules. Details the architecture.