SVGL MCP Server
An MCP server implementation that processes SVG content using SVGL (Scalable Vector Graphics Language), providing validation and repository access capabilities.
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 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
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...
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.
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.
Recommend MCP Servers 💡
video-editor-mcp
MCP Interface for Video Jungle
@gongrzhe/quickchart-mcp-server
A Model Context Protocol server for generating charts using QuickChart.io
@charlesmuchene/pref-editor-mcp-server
Edit Android app user preferences in real-time using natural language commands via MCP protocol
RoryMB/Make_MCP
An MCP server that helps users create other MCP servers, integrable with Claude Desktop
website-downloader
MCP server to download entire websites
gmail-mcp-server
Gmail MCP server with RAG support, integrates with Gmail APIs to list, delete, summarize, and send emails and labels.