Back to Search

neonia_fab_geometry_generator

1.0.0

Generates procedural vector paths (SVG) and CAD blueprints.

$0.002 / call (Standard Tier)
Updated: Jun 18, 2026

Overview

Procedurally generates multi-layered mathematical vector drawings (SVG) and outputs CAD-ready blueprint instructions.

Example Input

JSON payload sent to this tool:

{
  "pattern_type": "voronoi",
  "dimensions": {
    "shape": "circle",
    "size_mm": 100.0,
    "base_height_mm": 4.0,
    "pattern_height_mm": 2.0
  },
  "modifiers": {
    "seed": 42,
    "density": 0.4,
    "symmetry_order": 6,
    "line_width_mm": 1.2
  },
  "features": {
    "has_outer_rim": true,
    "rim_width_mm": 4.0,
    "hollow_pockets": false
  }
}

Example Output

Formatted JSON response returned by this tool:

{
  "status": "success",
  "svg_resource_uri": "neonia://resource/uuid",
  "blueprint": {
    "outer_shape": "circle",
    "target_vessel": "2.5D_Extrusion",
    "layers": [
      {
        "id": "base_layer",
        "hex_color": "#000000",
        "operation": "extrude",
        "thickness_mm": 4.0
      },
      {
        "id": "pattern_layer",
        "hex_color": "#FF0000",
        "operation": "emboss",
        "thickness_mm": 2.0
      },
      {
        "id": "rim_layer",
        "hex_color": "#0000FF",
        "operation": "emboss",
        "thickness_mm": 2.0
      }
    ]
  }
}

Setup Configuration

Add the following configuration to your MCP general settings or mcp_config.json:

{
  "mcpServers": {
    "neonia": {
      "serverUrl": "https://mcp.neonia.io/mcp?tools=neonia_fab_geometry_generator",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}