Loading languages...
@M

@modelcontextprotocol/server-svgl

@sam-trost

No description provided.

svg
validation
repository
svgl

SVGL MCP Server

An MCP server implementation that processes SVG content using SVGL (Scalable Vector Graphics Language), providing validation and repository access capabilities.

SVGL API

Features

  • SVG Validation: Validate SVG content against SVGL specifications
  • SVG Repository Access: Browse and retrieve SVGs from the SVGL repository
  • Detailed Error Reporting: Get line-by-line validation feedback
  • Base64 Encoding: Get SVGs encoded in base64 format for easy embedding

Tools

  • svgl_validate

    • Validate SVG content against SVGL specifications
    • Inputs:
      • svgContent (string): SVG content to validate
    • Returns detailed validation results including line numbers and error messages
  • svgl_list

    • List all SVGs in the repository with their metadata
    • Returns an array of SVG items with:
      • id: Unique identifier
      • title: SVG title
      • category: SVG category
      • route: SVG route (string or object with light/dark variants)
      • url: SVG URL
  • svgl_get

    • Retrieve a specific SVG by name
    • Inputs:
      • name (string): The name of the SVG to retrieve
    • Returns the SVG content in base64 format if valid

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

Docker

{
  "mcpServers": {
    "svgl": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/svgl"]
    }
  }
}

NPX

{
  "mcpServers": {
    "svgl": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-svgl"]
    }
  }
}

Usage with VS Code

For quick installation, use the one-click installation buttons below...

Install with NPX in VS Code Install with NPX in VS Code Insiders

Install with Docker in VS Code Install with Docker in VS Code Insiders

For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is not needed in the .vscode/mcp.json file.

Docker

{
  "mcp": {
    "servers": {
      "svgl": {
        "command": "docker",
        "args": ["run", "-i", "--rm", "mcp/svgl"]
      }
    }
  }
}

NPX

{
  "mcp": {
    "servers": {
      "svgl": {
        "command": "npx",
        "args": ["-y", "@modelcontextprotocol/server-svgl"]
      }
    }
  }
}

Build

Docker build:

docker build -t mcp/svgl:latest -f src/svgl/Dockerfile .

License

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.

# mcpServer Config

{
  "mcpServers": {
    "svgl": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-svgl"
      ]
    }
  }
}

# stdio

npx -y @modelcontextprotocol/server-svgl
Transport:
stdio
Language:
JavaScript
Created: 4/25/2025
Updated: 4/25/2025