loading…
Search for a command to run...
loading…
Enables AI assistants to search, browse, and download professional icons from The Noun Project directly within MCP-compatible environments. It supports SVG and
Enables AI assistants to search, browse, and download professional icons from The Noun Project directly within MCP-compatible environments. It supports SVG and PNG formats with customizable styles and provides optimized modes for free and paid API tiers.

npm version License: MIT Node.js Version
⚠️ Unofficial Project · This is an independent third-party tool using The Noun Project API. Not affiliated with or endorsed by The Noun Project.
MCP (Model Context Protocol) server for searching, downloading, and using icons from The Noun Project in Cursor AI, Claude Desktop, and other MCP-supported AI tools.
Cursor AI Add to MCP settings:
|
Claude Desktop Add to config:
|
Claude Code Run in terminal:
|
What is this? A bridge that lets AI assistants search and download professional icons for your projects. No manual browsing needed - just ask your AI!
Don't have API keys? Get them here →
Option A: npx (Easiest - No Install Required)
# Run directly without installation
npx @alisaitteke/noun-mcp
Option B: Global Install
npm install -g @alisaitteke/noun-mcp
Option C: Local Development
git clone https://github.com/alisaitteke/noun-mcp.git
cd noun-mcp
npm install
npm run build
npm link
Create a .env file in the project directory:
cp .env.example .env
Edit .env with your credentials:
# Your API credentials from The Noun Project
NOUN_CONSUMER_KEY=your_consumer_key_here
NOUN_CONSUMER_SECRET=your_consumer_secret_here
# Choose your tier: FREE (5K calls/month) or PAID (unlimited)
NOUN_API_TIER=FREE
FREE Tier (5,000 API calls/month)
PAID Tier (Unlimited)
NOUN_API_TIER in your .env file!
Open Cursor settings: Settings → Features → MCP
Add this configuration:
Option A: Using npx (Recommended)
{
"mcpServers": {
"noun-project": {
"command": "npx",
"args": ["@alisaitteke/noun-mcp"],
"env": {
"NOUN_CONSUMER_KEY": "your_key_here",
"NOUN_CONSUMER_SECRET": "your_secret_here",
"NOUN_API_TIER": "FREE"
}
}
}
}
Option B: Using global install
{
"mcpServers": {
"noun-project": {
"command": "noun-mcp",
"env": {
"NOUN_CONSUMER_KEY": "your_key_here",
"NOUN_CONSUMER_SECRET": "your_secret_here",
"NOUN_API_TIER": "FREE"
}
}
}
}
Option C: Using local build
{
"mcpServers": {
"noun-project": {
"command": "node",
"args": ["/path/to/noun-mcp/dist/index.js"],
"env": {
"NOUN_CONSUMER_KEY": "your_key_here",
"NOUN_CONSUMER_SECRET": "your_secret_here",
"NOUN_API_TIER": "FREE"
}
}
}
}
Edit: ~/Library/Application Support/Claude/claude_desktop_config.json
Using npx (Recommended)
{
"mcpServers": {
"noun-project": {
"command": "npx",
"args": ["@alisaitteke/noun-mcp"],
"env": {
"NOUN_CONSUMER_KEY": "your_key_here",
"NOUN_CONSUMER_SECRET": "your_secret_here",
"NOUN_API_TIER": "FREE"
}
}
}
}
Once configured, just talk to your AI naturally:
"Find me some coffee cup icons"
"Search for solid style house icons"
"Show me line icons with weight 18-20 for 'bicycle'"
"Download icon 12345 in red color"
"Get icon 67890 as PNG, 200x200 pixels, save to ./icons/house.png"
"Download this icon as SVG with hex color FF5733"
"Search for weather icon collections"
"Show me collection 123 details"
"Give me autocomplete suggestions for 'spo'"
"How many API calls have I used this month?"
"Check my API usage limits"
The AI can use these tools to help you:
search_iconsSearch The Noun Project icon database.
What you can filter:
solid, line, or both1-60 or range like "18-20"42, 84, or 200 pixelsExample:
"Search for 'coffee' icons in solid style, public domain only"
get_iconGet detailed information about a specific icon.
Returns:
Example:
"Show me details for icon 12345"
download_iconDownload an icon with custom options.
Options:
Note: FREE tier can only download public domain icons.
Example:
"Download icon 12345 as PNG, 200x200, red color, save to ./icons/coffee.png"
search_collectionsFind icon collections by keyword.
Example:
"Search for 'travel' collections"
get_collectionView a specific collection with all its icons.
Example:
"Show me collection 456"
icon_autocompleteGet search term suggestions (max 10).
Example:
"What terms start with 'comp'?"
check_usageCheck your API usage and limits.
Shows:
Maximize your 5,000 monthly calls:
Bad: "icon" → Too broad, many pages needed
Good: "coffee cup" → Specific, better results
Step 1: "Suggestions for 'cof'" → ["coffee", "coffee cup"]
Step 2: "Search for 'coffee cup'" → Exact results
Bad: Browsing 5 pages = 5 API calls
Good: Refine search to get results on first page
Download icon → Save to project → Use everywhere
(Don't re-download the same icon)
FREE tier can only download public domain icons
Filter searches with limit_to_public_domain=1
The server automatically caches usage data for 5 minutes. You should also save:
The server automatically optimizes API usage in FREE tier mode:
| Feature | FREE Tier | PAID Tier |
|---|---|---|
| Results per page | 10 max | 100 max |
| Default thumbnail | 42px | 84px |
| SVG URLs | Excluded | Included |
| Pagination warnings | Yes | No |
| Usage alerts | 50%, 80%, 95% | None |
Want full details? See COST_OPTIMIZATION.md
npm install
npm run dev
npm run build
npm start
noun-mcp/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── api/
│ │ ├── auth.ts # OAuth 1.0a authentication
│ │ └── client.ts # API client with rate limiting
│ ├── tools/
│ │ ├── search.ts # Icon search functionality
│ │ ├── download.ts # Icon download & details
│ │ ├── collections.ts # Collections & autocomplete
│ │ └── usage.ts # Usage monitoring
│ ├── types/
│ │ └── schemas.ts # Zod schemas & TypeScript types
│ └── utils/
│ └── costOptimizer.ts # Cost optimization logic
├── package.json
├── tsconfig.json
└── README.md
Problem: API keys not found.
Solution:
.env file existsNOUN_CONSUMER_KEY and NOUN_CONSUMER_SECRET are setProblem: Invalid API credentials.
Solution:
Problem: Too many requests too fast.
Solution:
check_usage toolProblem: SVG URLs expire after 1 hour.
Solution:
download_icon to get base64-encoded iconsProblem: Trying to download non-public-domain icon with FREE account.
Solution:
limit_to_public_domain=1Problem: MCP server not detected.
Solution:
| Tier | Monthly Limit | Rate Limit | Download Access |
|---|---|---|---|
| FREE | 5,000 calls | 100/min | Public domain only |
| PAID | Unlimited | 100/min | All icons |
Want more? Check The Noun Project Pricing
Contributions are welcome!
git checkout -b feature/amazing-featuregit commit -m 'Add amazing feature'git push origin feature/amazing-featureMIT License - see LICENSE file for details.
Ali Sait Teke
Note: This is a community-built MCP server and is not an official product of The Noun Project.
Made with
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"noun-mcp-server": {
"command": "npx",
"args": []
}
}
}