Server data from the Official MCP Registry
320K+ open-source SVG icons: 12 tools, anonymous metadata search; SVG, exports, collections via Pro.
320K+ open-source SVG icons: 12 tools, anonymous metadata search; SVG, exports, collections via Pro.
Remote endpoints: streamable-http: https://svgicons.com/mcp
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
12 tools verified · Open access · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"com-svgicons-mcp": {
"url": "https://svgicons.com/mcp"
}
}
}From the project's GitHub README.
The Svg/icons MCP server connects AI coding tools to svgicons.com, a catalog of 320K+ open-source SVG icons. Assistants can search icons and icon sets, fetch icon metadata, and get icon recommendations for a UI without any account. With a Pro account (OAuth or a scoped API token), they can also fetch raw SVG markup, render PNG exports, and create, read, extend, and export persistent Icon Collections — including custom-styled icons — so the icon-discovery step never leaves the development workflow.
The server is hosted, remote MCP over Streamable HTTP (JSON-RPC requests via HTTP POST). There is no local install and no local Svg/icons MCP server package.
Endpoint:
https://svgicons.com/mcp
Current MCP server version: 0.3.0 (protocol 2025-06-18).
Official MCP Registry name: com.svgicons/mcp — see Official MCP Registry listing.
This repository documents the hosted MCP endpoint. It contains no server code.
The live product docs are the source of truth: MCP server docs and the MCP developer overview.
The hosted endpoint exposes exactly these 12 live tools.
Search and read (anonymous metadata; raw SVG with Pro):
search_icons — search icon metadata by query, category, or icon set prefix; add includeSvg for raw SVG with a Pro token.search_icon_sets — search icon sets by name, prefix, author, category, or description to pick a consistent visual family.get_icon — fetch one icon by ID; metadata is public, raw SVG requires a Pro token.Recommendations (anonymous):
recommend_icons_for_ui — describe a UI or screen and receive icon candidates with short rationales.Icon Collections — create, read, extend (Pro):
create_icon_kit — create a persistent Icon Collection and optionally seed it with icon IDs.generate_icon_kit_for_project — generate an Icon Collection from a project brief, screen list, or required concepts.list_icon_collections — list your Icon Collections with icon counts, an optional name/slug filter, and pagination.get_icon_collection — read one collection with paginated entries, including custom-icon entries and their customized SVG bodies.add_icons_to_collection — add catalog icons to an existing collection; idempotent, already-present icons are skipped.remove_icon_from_collection — remove an icon from a collection; entry-precise by default, pass allVariants: true to remove every entry of the icon.Exports (Pro):
export_icon_png — render one icon as a PNG file or a ZIP of PNG variants, returned as a JSON-safe base64 payload.export_icon_collection — queue an Icon Collection export: SVG folders, SVG sprites, React/Vue/Svelte/Solid/Blade components, Storybook galleries, npm package scaffolds, PNG packs, Iconify JSON, and JSON/license manifests.See docs/TOOLS.md for verified input fields, output notes, access requirements, and safe prompt examples.
colorPolicy, collections that carry styling (an applied style or custom-icon entries) default to preserve, so exported files keep the colors the customization defined. Plain collections keep the currentColor default. An explicit colorPolicy always wins.formats: ["png"] as a shorthand for png-pack.Anonymous (no account): metadata-only access to search_icons, search_icon_sets, get_icon, and recommend_icons_for_ui. Anonymous requests are rate-limited per method and currently capped at 10 icons per search or recommendation. Raw SVG, PNG export, and all Icon Collection tools are not available anonymously.
Pro: authenticate with either of:
https://svgicons.com/.well-known/oauth-authorization-server (resource metadata at /.well-known/oauth-protected-resource/mcp), register dynamically, and send you to svgicons.com to sign in and approve access.Authorization: Bearer YOUR_API_TOKEN in clients that support private headers.Pro raises search caps (up to 50 icons per search) and unlocks raw SVG, PNG export, and the Icon Collection and export tools.
Token scopes — give each client the smallest set it needs:
| Scope | Unlocks |
|---|---|
mcp:use | Required for any authenticated MCP call. |
search:read | Search workflows. |
icons:read | Raw SVG and PNG export inputs. |
collections:read | Listing and reading Icon Collections. |
collections:write | Creating and extending Icon Collections. |
exports:create | PNG export and Icon Collection export workflows. |
The Pro Plan is €6/$7 per month or €69/$79 lifetime — see pricing. On the website, Icon Collections are also available to free Member accounts through a one-time trial allowance of 15 Pro credits; MCP and API access always require a Pro token.
See docs/AUTHENTICATION.md and the MCP server docs.
claude mcp add --transport http svgicons https://svgicons.com/mcp
Then run /mcp inside Claude Code to complete the OAuth sign-in. To use a Pro API token instead:
claude mcp add --transport http svgicons https://svgicons.com/mcp \
--header "Authorization: Bearer YOUR_API_TOKEN"
https://svgicons.com/mcp and click Add.Team/Enterprise owners add it under Organization settings → Connectors → Add → Custom → Web; members then connect individually.
Project .cursor/mcp.json or global ~/.cursor/mcp.json:
{
"mcpServers": {
"svgicons": {
"url": "https://svgicons.com/mcp"
}
}
}
Omit headers to use Cursor's OAuth flow, or add a token:
{
"mcpServers": {
"svgicons": {
"url": "https://svgicons.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}
~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"svgicons": {
"serverUrl": "https://svgicons.com/mcp"
}
}
}
Omit headers for OAuth, or reference an environment variable:
{
"mcpServers": {
"svgicons": {
"serverUrl": "https://svgicons.com/mcp",
"headers": {
"Authorization": "Bearer ${env:SVGICONS_API_TOKEN}"
}
}
}
}
Workspace .vscode/mcp.json:
{
"servers": {
"svgicons": {
"type": "http",
"url": "https://svgicons.com/mcp"
}
}
}
ChatGPT authenticates through OAuth with Dynamic Client Registration; Codex-style clients can use a bearer token. Follow the website guide: Use MCP with ChatGPT and Codex, plus configs/chatgpt-codex.md and configs/codex.example.md.
Clients that support remote HTTP MCP servers can connect with the generic shape:
{
"mcpServers": {
"svgicons": {
"type": "http",
"url": "https://svgicons.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
}
}
}
}
Clients that only launch local command-based MCP servers can bridge with mcp-remote:
{
"mcpServers": {
"svgicons": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://svgicons.com/mcp",
"--header",
"Authorization: Bearer ${SVGICONS_API_TOKEN}"
],
"env": {
"SVGICONS_API_TOKEN": "YOUR_API_TOKEN"
}
}
}
}
More client guidance: docs/CLIENTS.md and configs/README.md.
The server is published in the Official MCP Registry as com.svgicons/mcp. Verify the live listing:
curl -s "https://registry.modelcontextprotocol.io/v0/servers?search=com.svgicons"
Directories that ingest the official registry (such as PulseMCP) pick the listing up automatically.
The prompt library includes copyable workflows for search, React components, dashboard navigation, emoji replacement, accessibility review, themeable icons, design-system review, Icon Collections, and PNG export. Start with search icons, then move to code or export prompts only after reviewing the tool calls and selected icons.
Sample use cases are marked as examples, not real customer submissions. Review generated SVG and code before committing changes.
Run local checks before proposing changes:
npm ci
npm run validate
CI runs the same validation without live MCP calls, auth tokens, publishing, or deployment.
Repo roles:
See SECURITY.md and docs/SECURITY.md.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.