nucleo-mcp
Allows searching, retrieving, and saving SVG icons from a local Nucleo library, enabling AI agents to find and use icons the user already owns.
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., "@nucleo-mcpsearch for a cloud upload icon"
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.
Nucleo has tens of thousands of icons, and finding the right one usually means scrolling the app. This connects your assistant (Claude Code, Claude Desktop, Cursor, or any MCP client) straight to your own Nucleo library, so you can just ask โ "find me an outline shopping cart" or "save a user-profile icon into this project" โ and get the SVG back in seconds.
It reads the library the Nucleo desktop app already keeps on your computer. Nothing leaves your machine.
โจ What it does and does not do
It does:
Search all your Nucleo icons by name or meaning, ranked best-first.
Return the SVG for any icon, in any style (outline, glyph, duo, colored) and size you own.
Save an icon straight into your project folder.
It does not:
Unlock premium icons. This is not a way around buying Nucleo. It only reads icons your own purchase and license already give you, from the library on your own machine. If you have not licensed an icon, it will not appear.
Send your library, license key, or any data anywhere. There are no network calls and no accounts.
Change your Nucleo library. It only reads from it.
Related MCP server: Noun MCP Server
๐ฆ Before you start
You need:
Nucleo, purchased and installed. Open the desktop app at least once and sign in so it downloads your icons.
Node.js 22.5 or newer.
An MCP-capable assistant (for example Claude Code).
๐ Install
git clone https://github.com/AkashRajpurohit/nucleo-mcp.git
cd nucleo-mcp
npm installThen register it with your assistant. Note the full path to mcp.mjs โ you will need it below:
echo "$PWD/mcp.mjs"Claude Code
claude mcp add nucleo --scope user -- node "$PWD/mcp.mjs"Claude Desktop
Open Settings โ Developer โ Edit Config (or edit claude_desktop_config.json directly) and add:
{
"mcpServers": {
"nucleo": {
"command": "node",
"args": ["/absolute/path/to/nucleo-mcp/mcp.mjs"]
}
}
}Restart Claude Desktop.
Cursor
Open Settings โ MCP โ Add new global MCP server (or edit ~/.cursor/mcp.json) and add the same nucleo entry as above:
{
"mcpServers": {
"nucleo": {
"command": "node",
"args": ["/absolute/path/to/nucleo-mcp/mcp.mjs"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json and add the same nucleo entry under mcpServers.
VS Code (GitHub Copilot)
Add it to .vscode/mcp.json in your workspace (or run MCP: Add Server from the Command Palette):
{
"servers": {
"nucleo": {
"command": "node",
"args": ["/absolute/path/to/nucleo-mcp/mcp.mjs"]
}
}
}Any other MCP client
Register a stdio server that runs node /absolute/path/to/nucleo-mcp/mcp.mjs. That is all the server needs.
Once registered, start a new session and ask your assistant to "check the Nucleo status." It should report how many icons and packs it found. If it does, you are ready.
๐ฌ How to use it
Just talk to your assistant. For example:
"Search Nucleo for a shopping cart icon."
"Show me the outline calendar icons at 24px."
"Grab the glyph user icon from the Core pack and save it to
./src/icons.""Which Nucleo packs do I have?"
Behind the scenes it offers five tools your assistant uses automatically:
Tool | What it does |
| Confirms the library was found and reports icon and pack counts. |
| Finds icons by name and tags, ranked best-first. |
| Returns one icon's SVG and details. |
| Lists your icon packs. |
| Saves an icon into your project. |
nucleo_save only writes inside the folder your assistant is working in โ it will not write anywhere else on your computer.
๐ฉบ If it can't find your icons
Run a quick check yourself:
node cli.mjs statusIf it says the library was not found:
Open the Nucleo desktop app and make sure you are signed in and your icons have finished syncing.
If your library lives in a custom location, point the tool at it by setting
NUCLEO_DATA_PATHto the folder that containsdata.sqlite3and thesets/directory.
By default it looks where Nucleo normally stores its library:
macOS โ
~/Library/Application Support/Nucleo/iconsWindows โ
%APPDATA%\Nucleo\iconsLinux โ
~/.config/Nucleo/icons
๐งช Try it without an assistant
You can run everything from the terminal to see how it behaves:
node cli.mjs status
node cli.mjs search "shopping cart"
node cli.mjs get cart-shopping
node cli.mjs sets
node cli.mjs save cart-shopping ./iconsโ๏ธ Licensing and disclaimer
This project is not affiliated with, endorsed by, or associated with Nucleo or the Nucleo team in any way. It is an independent, open-source tool that simply reads a Nucleo library you already own. "Nucleo" is a trademark of its respective owner and is used here only to describe what the tool works with.
The icons themselves stay under Nucleo's license โ this tool does not change your rights to them, grant you any icons you have not purchased, or let you redistribute them. Use the icons exactly as your Nucleo license permits.
The tool is released under the MIT license (see LICENSE). It is provided as-is, with no warranty. Because it reads Nucleo's local files, a future update to the Nucleo app could change where or how the library is stored; if that happens, nucleo_status will tell you the library was not found.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/AkashRajpurohit/nucleo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server