nucleo-mcp

nucleo-mcp

Enables AI assistants to search, retrieve, and save Nucleo icons from the user's local library directly into projects.

Category
访问服务器

README

<div align="center" width="100%"> <h2>🎨 nucleo-mcp</h2> <p>Give your AI assistant instant access to the <a href="https://nucleoapp.com">Nucleo</a> icons you already own.</p> <a target="_blank" href="https://github.com/AkashRajpurohit/nucleo-mcp/stargazers"><img src="https://img.shields.io/github/stars/AkashRajpurohit/nucleo-mcp" /></a> <a target="_blank" href="https://github.com/AkashRajpurohit/nucleo-mcp/blob/main/LICENSE"><img src="https://img.shields.io/github/license/AkashRajpurohit/nucleo-mcp" /></a> <img alt="Node version" src="https://img.shields.io/badge/node-%3E%3D22.5-339933?logo=nodedotjs&logoColor=white" /> <img alt="MCP server" src="https://img.shields.io/badge/MCP-server-1f1f1f" /> <img alt="Visitors" src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fvc.akashrajpurohit.com%2Fc%2Fakash~gh~nucleo-mcp&query=count&style=flat&logo=github&label=Visitors&color=066da5" /> <a target="_blank" href="https://ko-fi.com/akashrajpurohit"><img src="https://img.shields.io/badge/Ko--fi-F16061?style=flat-square&logo=ko-fi&logoColor=white" /></a> <a target="_blank" href="https://akashrajpurohit.com/sponsors/?ref=nucleo-mcp"><img src="https://img.shields.io/badge/Sponsor-AkashRajpurohit-F16061?style=flat-square&logoColor=white" /></a> <a target="_blank" href="https://twitter.com/akashwhocodes"><img alt="follow on twitter" src="https://img.shields.io/twitter/follow/akashwhocodes.svg?style=social&label=@akashwhocodes" /></a> <br /> <br /> <p align="center"> <a href="https://github.com/AkashRajpurohit/nucleo-mcp/issues/new?template=bug_report.yml">Bug report</a> · <a href="https://github.com/AkashRajpurohit/nucleo-mcp/issues/new?template=feature_request.yml">Feature request</a> · <a href="https://github.com/AkashRajpurohit?tab=repositories">More projects</a> </p> </div> <hr />

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.

📦 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 install

Then 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
nucleo_status Confirms the library was found and reports icon and pack counts.
nucleo_search Finds icons by name and tags, ranked best-first.
nucleo_get Returns one icon's SVG and details.
nucleo_list_sets Lists your icon packs.
nucleo_save 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 status

If it says the library was not found:

  1. Open the Nucleo desktop app and make sure you are signed in and your icons have finished syncing.
  2. If your library lives in a custom location, point the tool at it by setting NUCLEO_DATA_PATH to the folder that contains data.sqlite3 and the sets/ directory.

By default it looks where Nucleo normally stores its library:

  • macOS~/Library/Application Support/Nucleo/icons
  • Windows%APPDATA%\Nucleo\icons
  • Linux~/.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.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选