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 💡
typescript-analyzer
An intelligent MCP server for analyzing and fixing TypeScript 'any' types, offering fast, extensible, and React-aware capabilities.
proxymock
An MCP server built into proxymock that enables Agent-based LLM tools to interact with proxymock for recording API/Database calls, generating tests, and creating service mocks.
vet-mcp
A local MCP server using stdio/sse transports to vet open source packages for security risks before use in AI-generated code projects.
mcp-example
A demonstration MCP server with SSE communication and a demo greeting tool.
HackerMCP
A module enabling AI assistants to access penetration testing and security tools via MCP
mcp-nixos
MCP-NixOS - Model Context Protocol Server for NixOS resources