Back to Search

neonia_util_svg_validator

2.1.0

A strict geometric linter for SVG code.

$0.002 / call (Standard Tier)
Updated: May 19, 2026

Overview

A geometric linter for SVG graphics designed for physical manufacturing.

Example Input

JSON payload sent to this tool:

{
  "svg_resource_uris": ["neonia://resource/abcd"]
}

Example Output

Formatted JSON response returned by this tool:

{
  "is_valid": false,
  "errors": [
    "[Item 0] Path 'path_0' is not closed (missing Z command)."
  ],
  "warnings": []
}

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_util_svg_validator",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}