lucide-mcp
The lucide-mcp server enables AI coding agents to search, retrieve, and integrate Lucide SVG icons into projects. It offers these capabilities:
Search icons by name using exact, partial, or fuzzy matching.
List all available icon names with pagination (limit and offset).
Get detailed metadata for a specific icon, including tags, aliases, local SVG path, and suggestions for unknown names.
Fetch raw SVG markup for an icon, with options to strip license comments, remove class attributes, and override stroke width.
Add an icon to a project by writing an SVG file to a specified directory, with control over filename, overwrite behavior, and SVG cleaning options.
Access raw SVG directly via the
lucide://icons/{name}.svgresource URI.
Provides tools for searching, retrieving, and adding Lucide SVG icons to projects, including metadata and custom SVG markup generation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@lucide-mcpfind a home icon and add it to assets/icons"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
lucide-mcp
MCP server for searching, retrieving, and adding Lucide SVG icons from AI coding agents.
Resources
lucide://icons/{name}.svg- read raw SVG markup for an icon, for examplelucide://icons/panel-left.svg
Related MCP server: brain-mcp-icon-visual
Tools
search_icons- search icons by exact, partial, and fuzzy name matchingget_icon_metadata- return tags, aliases, SVG path, and suggestions for an iconget_icon_svg- return raw SVG markup for an iconadd_icon_to_project- write an SVG file into the current projectlist_icons- list available Lucide icon names
Usage
{
"mcpServers": {
"lucide": {
"command": "npx",
"args": ["lucide-mcp"]
}
}
}With a local checkout:
{
"mcpServers": {
"lucide": {
"command": "node",
"args": ["/path/to/lucide-mcp/dist/index.mjs"]
}
}
}Examples
Search for sidebar icons:
search_icons({ "query": "sidebar", "limit": 5 })Get icon metadata:
get_icon_metadata({ "name": "panel-left" })Read SVG as a resource:
lucide://icons/panel-left.svgGet raw SVG with a tool:
get_icon_svg({ "name": "panel-left" })Get cleaned SVG markup:
get_icon_svg({
"name": "panel-left",
"stripLicense": true,
"stripClass": true,
"strokeWidth": 1.5
})Add an icon to a project:
add_icon_to_project({
"name": "panel-left",
"outputDir": "assets/icons",
"overwrite": false,
"stripLicense": true,
"stripClass": true
})The default output directory is assets/icons. Existing files are not overwritten unless overwrite is set to true. Use stripLicense, stripClass, and strokeWidth to customize the generated SVG markup.
Agent behavior
Agents can use this server when they need an icon for a UI feature and the project does not already contain a suitable SVG. A good workflow is:
Inspect existing project icons first.
Search Lucide with a semantic query.
Pick the best named icon.
Add it to the project's icon directory.
Use the SVG according to the project's conventions.
Development
pnpm install
pnpm test
pnpm build
pnpm typecheckRun locally:
pnpm devLicense
MIT. Lucide icons are distributed by the Lucide project under the ISC license.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceProvides access to over 200,000 icons from 150+ collections with features for searching, recommendations, and direct file synchronization. It supports multiple frameworks and optimizes AI performance by writing icon code directly to project files.6641,216MIT
- Flicense-qualityDmaintenanceVisual icon search, retrieval, and comparison for AI agents. Search 200k+ icons semantically, render side-by-side comparison grids, and retrieve raw SVG markup — all tools return images so vision-capable LLMs can see the icons.1
- AlicenseAqualityAmaintenanceDescription: Supericons MCP lets AI coding agents search, recommend, and retrieve SVG icons from a semantic registry of 20,000+ icons.14MIT

Svg/icons MCPofficial
Alicense-qualityCmaintenanceEnables AI coding tools to search, inspect, recommend, and export SVG icons from svgicons.com for use in design systems, frontend projects, and AI-assisted workflows.MIT
Related MCP Connectors
Icons for agentic development: search & fetch 366,000+ open-source icons as SVG/PNG. No API key.
Multilingual semantic SVG icon search with previews for AI coding agents. 20,000+ icons.
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joris-gallot/lucide-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server