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 💡
@jetbrains/mcp-proxy
A model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
@exoticknight/mcp-file-merger
MCP server for merging multiple files into one
@bharathvaj/whois-mcp
MCP Server for whois lookups, allowing AI agents to perform domain, IP, ASN whois queries
mcp_sse
An Elixir implementation of the Model Context Protocol (MCP) server using Server-Sent Events (SSE) transport
secops-mcp
All-in-one security testing toolbox that brings together popular open source tools through a single MCP interface. Connected to an AI agent, it enables tasks like pentesting, bug bounty hunting, threat hunting, and more.
mcp-wecombot-server
An MCP server application that sends various types of messages to the WeCom group robot.