A MCP server for converting input images into favicon
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"favicon-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Control Protocol (MCP) server that converts SVG images into various favicon formats (ICO and PNG) for web applications.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
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 / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for Favicon Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Control Protocol (MCP) server that converts SVG images into various favicon formats (ICO and PNG) for web applications.
https://github.com/user-attachments/assets/7dcab05c-2340-4f8b-befc-7614b495685f
github.com/mark3labs/mcp-go v0.13.0github.com/sergeymakinen/go-icogithub.com/tdewolff/canvasgit clone https://github.com/elliotxx/favicon-mcp-server.git
cd favicon-mcp-server
go mod download
go run main.go
svg_data: SVG icon content provided as a string.output_formats: Array of strings specifying the desired output formats (ico, png). Default: ["ico", "png"].The server returns base64 encoded favicon data in the requested formats:
{
"content": [
{
"type": "text",
"text": "Successfully generated favicons"
}
],
"meta": {
"ico": "base64_encoded_ico_data",
"png": "base64_encoded_png_data"
}
}
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "svg_to_favicon",
"arguments": {
"svg_data": "<svg width=\"32\" height=\"32\"><rect width=\"32\" height=\"32\" fill=\"red\"/></svg>"
}
}
}
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "svg_to_favicon",
"arguments": {
"svg_file": "path/to/your/icon.svg"
}
}
}
Base64 Encoded Output (Default):
File Output:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "svg_to_favicon",
"arguments": {
"svg_data": "<svg width=\"32\" height=\"32\"><rect width=\"32\" height=\"32\" fill=\"red\"/></svg>",
"output_dir": "path/to/output/directory",
"output_formats": ["ico", "png"]
}
}
}
When using file output:
favicon.icofavicon-{size}x{size}.png (e.g., favicon-32x32.png)The simplest way to test with direct SVG input:
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"svg_to_favicon","arguments":{"svg_data":"<svg width=\"32\" height=\"32\"><rect width=\"32\" height=\"32\" fill=\"red\"/></svg>"}}}' | go run main.go
If you prefer using a test file:
test.json with your test caseecho $(tr -d '\n' < test/test.json) | go run main.go
svg_data: SVG content as a stringsvg_file: Path to an SVG fileoutput_dir: Directory to save the output filesoutput_formats: Array of desired formats (["ico", "png"])The project follows standard Go project layout and uses Go modules for dependency management.
favicon-mcp-server/
├── main.go # Main server implementation
├── go.mod # Go module definition
├── go.sum # Go module checksums
└── README.md # This file
go build
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)