An MCP server implementation that processes SVG content using SVGL (Scalable Vector Graphics Language), providing validation and repository access capabilities.
- 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
-
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 identifiertitle: SVG titlecategory: SVG categoryroute: 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
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"svgl": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/svgl"]
}
}
}{
"mcpServers": {
"svgl": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-svgl"]
}
}
}For quick installation, use the one-click installation buttons below...
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
mcpkey is not needed in the.vscode/mcp.jsonfile.
{
"mcp": {
"servers": {
"svgl": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/svgl"]
}
}
}
}{
"mcp": {
"servers": {
"svgl": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-svgl"]
}
}
}
}Docker build:
docker build -t mcp/svgl:latest -f src/svgl/Dockerfile .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.