r/LocalLLaMA · · 1 min read

Built a fun weekend project: An MCP server for generating Mandelbrot visualizations

Mirrored from r/LocalLLaMA for archival readability. Support the source by reading on the original site.

Built a fun weekend project: An MCP server for generating Mandelbrot visualizations

I've always liked fractals, so I wanted to see how well an LLM could explore the Mandelbrot set if it had proper tools to inspect and generate renders.

The server gives models access to:

  • Rendering tools for Mandelbrot images
  • Presets for interesting regions (Seahorse Valley, Elephant Valley, triple spirals, etc.)
  • An inspect tool that helps choose iteration counts and viewport settings before rendering
  • Color palette selection along with the ability to define custom ones
  • A gallery generator that bundles renders into a static HTML page

One thing I learned pretty quickly is that fractal rendering is surprisingly sensitive. If the viewport or iteration count is slightly off, the output is usually garbage. The presets and
inspection tools make exploration much more reliable.

All images above were generated by qwen3.6-35B-A3B via LM Studio.

Install:

{ "mcpServers": { "openmandel": { "command": "uvx", "args": ["openmandel"], "env": { "OPENMANDEL_OUTPUT_DIR": "~/Pictures/openmandel" } } } } 

GitHub: https://github.com/anhadlamba30/openmandel

submitted by /u/Weak_Engine_8501
[link] [comments]

Discussion (0)

Sign in to join the discussion. Free account, 30 seconds — email code or GitHub.

Sign in →

No comments yet. Sign in and be the first to say something.

More from r/LocalLLaMA