Model Context Protocol server for SVGMaker - AI-powered SVG generation and editing. Seamlessly integrate SVG creation into AI workflows.
MCPpedia last refreshed this data
Svgmaker MCP is an MCP server that model Context Protocol server for SVGMaker - AI-powered SVG generation and editing. Seamlessly integrate SVG creation into AI workflows. Its tool list has not been published yet over stdio, sse and http, requires no API key, and scores 82/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"svgmaker": {
"env": {
"SVGMAKER_API_KEY": "your_api_key_here"
},
"args": [
"@genwave/svgmaker-mcp"
],
"command": "npx",
"transport": "stdio"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A powerful MCP server for generating, editing, and converting SVG images using SVGMaker API.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked svgmaker-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in design
AI-native design editor. Open-source Figma alternative.
AI image generation and editing with prompt optimization and quality presets. Powered by Nano Banana
Draw and visually collaborate with your agents on tldraw's canvas.
3D & AR SDK for Android, iOS, Web — API docs, samples, validation, and code generation.
MCP Security Weekly
Get CVE alerts and security updates for Svgmaker Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A powerful MCP server for generating, editing, and converting SVG images using SVGMaker API.
This very illustration came to life through our own SVGMaker MCP server—a living example of AI assistants and vector graphics working in perfect harmony via the Model Context Protocol.
node --version # Should be >= v20.9.0
npm --version # Should be >= 7.0.0
@genwave/svgmaker-mcp/
├── build/ # Compiled JavaScript files
├── docs/ # Documentation
│ └── api/ # API documentation
├── src/ # Source TypeScript files
│ ├── tools/ # MCP tool implementations
│ ├── services/ # API integration
│ └── utils/ # Utility functions
└── types/ # TypeScript declarations
# Using npm
npm install @genwave/svgmaker-mcp
# Using yarn
yarn add @genwave/svgmaker-mcp
SVGMAKER_API_KEY="your_api_key_here"
npx svgmaker-mcp
Every client below can run the server two ways:
output_path saves the result to disk.https://mcp.svgmaker.io/mcp and you sign in through the browser. The cloud server cannot see your disk, so output_path is not offered and results come back as hosted SVGMaker URLs. Local files must go through svgmaker_upload first.The example prompts in each section are given in both shapes. Use the one that matches your setup.
Add to claude_desktop_config.json.
stdio (API key):
{
"mcpServers": {
"svgmaker": {
"command": "npx",
"args": ["@genwave/svgmaker-mcp"],
"transport": "stdio",
"env": {
"SVGMAKER_API_KEY": "your_api_key_here"