Noun MCP Server
This server lets AI assistants search, download, and manage icons from The Noun Project directly through natural language.
Search icons: Find icons by query, filter by style (solid/line), line weight, thumbnail size, and limit to public-domain icons.
Get icon details: Retrieve metadata, creator, tags, and download URLs for a specific icon.
Download icons: Save icons as SVG or PNG with custom color and size, optionally to a specified file path (free tier limited to public domain).
Search collections: Find curated icon sets by keyword.
Get collection details: View icons within a collection with pagination and SVG inclusion.
Autocomplete: Get search term suggestions to refine queries before making expensive calls.
Check usage: Monitor API call usage (hourly, daily, monthly) to manage quotas.
Provides tools for searching, browsing, and downloading professional icons and collections from The Noun Project, including capabilities for filtering results and monitoring API usage limits.
Enables retrieving and downloading icons in SVG format with customizable colors and sizes for use in development projects.
Click on "Deploy 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., "@Noun MCP Serverfind a minimalist rocket icon in SVG format"
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.
Noun MCP
Languages: English · 简体中文 · Español · Deutsch · 日本語 · Türkçe
Ask for icons in plain words. Describe what you need — "a solid coffee cup, public domain" — and your AI assistant searches The Noun Project, picks a match, and downloads SVG or PNG into your project. Works with Cursor, Claude Desktop, and Claude Code.
Note: This is an unofficial, community-maintained project and is not affiliated with or endorsed by The Noun Project.
What can it do?
Search — filter by style, line weight, and public-domain license
Download — SVG or PNG, custom color and size, saved to a path you choose
Browse collections — curated icon sets, not just one-off searches
Autocomplete — get better search terms before you burn quota
Track usage — hourly, daily, and monthly service vs icon windows
Stay on the free trial — client-side caps so 150 icon calls/month last longer
Under the hood: 7 tools — full list in docs/available-tools.md.
Related MCP server: Noun Project MCP Server
Try saying
Find solid public-domain coffee cup icons, then download one as a red SVG into ./icons.Suggest search terms for "spo", then search weather collections.How many Noun Project API calls have I used this month?Get started
You need Node.js 18+ and Noun Project API keys (create an app — a free account works). Set NOUN_API_TIER to FREE (2,000 service / 150 icon calls per month) or PAID. Quota details: docs/available-tools.md.
Replace your_key / your_secret with your Consumer Key and Secret after install.
Claude Code:
claude mcp add \
--transport stdio \
noun-project \
--env NOUN_CONSUMER_KEY=your_key \
--env NOUN_CONSUMER_SECRET=your_secret \
--env NOUN_API_TIER=FREE \
-- npx -y @alisaitteke/noun-mcpOr add this to your MCP client's config (Cursor, Claude Desktop, …):
{
"mcpServers": {
"noun-project": {
"command": "npx",
"args": ["-y", "@alisaitteke/noun-mcp"],
"env": {
"NOUN_CONSUMER_KEY": "your_key",
"NOUN_CONSUMER_SECRET": "your_secret",
"NOUN_API_TIER": "FREE"
}
}
}
}Ready-made files: examples/cursor-config.json, examples/claude-desktop-config.json.
How it works
You type what you want in plain language.
The AI searches first —
search_iconsis a cheap service call and already returns IDs, license, and thumbnails.Download only when you need a file — each
download_icon/get_iconspends an icon call.
Hit a quota error? Ask for check_usage, then wait or refine. Common fixes: docs/troubleshooting.md.
Documentation
Available tools — all 7 tools, parameters, FREE vs PAID
Troubleshooting — keys, 429s, public-domain downloads
Architecture — OAuth, queue, retry, cache
Development — build from source, tests
Contributing
Contributions are welcome! Please read CONTRIBUTING.md before opening a PR.
Maintainer
Built by Ali Sait Teke — GitHub · LinkedIn.
License
MIT
Available Tools
7 toolscheck_usageA
Show current API usage vs limits for hourly, daily, and monthly windows, split into service calls vs icon calls. Cached for 5 minutes.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It adds one behavioral detail beyond the basic function: 'Cached for 5 minutes,' which tells the agent about data freshness. However, it doesn't disclose authentication requirements, side effects, or error behavior. 'Show' implies read-only, but that is implicit rather than explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One compact sentence that front-loads the core purpose and then adds the caching behavior. No filler or redundancy; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only usage check with no parameters, the description covers the essential scope (time windows, call-type split) and even adds a caching note. It doesn't specify the output data format, but the lack of an output schema and the simplicity of the tool make this acceptable. An agent can infer the response structure well enough to proceed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and schema description coverage is 100% (empty schema). Per the baseline rule, this warrants a 4; the description correctly omits parameter details because none exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Show') and resource ('current API usage vs limits'), with granularity (hourly/daily/monthly windows) and a split (service calls vs icon calls). It clearly distinguishes from siblings like get_icon and search_collections, which are all icon/collection tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or exclusions are stated, but the domain is so distinct from siblings that an agent can easily infer when to invoke it. The description provides clear context by enumerating the time windows and call categories, though it doesn't explicitly say 'use this when checking rate limits.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
download_iconA
Download one icon as SVG or PNG (optional color/size; FREE trial is public-domain only). This is an expensive icon call (150/day on the free trial). Use only when the user asked to save or embed the file, not to inspect search results.
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Size in pixels for PNG (min: 20, max: 1200). Not applicable for SVG. | |
| color | No | Hexadecimal color value (e.g., "FF0000" for red) | |
| icon_id | Yes | ID of the icon to download | |
| filetype | No | File format (svg or png) | |
| save_to_file | No | Optional: File path to save the icon |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It usefully discloses the quota cost (150/day on the free trial), the public-domain-only restriction on the free trial, and the optional color/size behavior. It does not describe the return representation (e.g., raw bytes vs file written via save_to_file), which is a minor gap but the disclosed constraints are meaningful.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short sentences with no wasted words. The core action and formats are front-loaded, and the usage boundary and quota warning are relevant additions. The phrase 'expensive *icon* call' is slightly informal but efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers when to use, quota, and licensing restrictions, which is good for a tool with no annotations and no output schema. However, it does not explain what the tool actually returns when save_to_file is omitted, nor how download success is conveyed, leaving a meaningful gap for an agent deciding how to present the result to the user.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents all five parameters. The description adds only that color/size are optional and that size applies to PNG, but those details are already implied by the schema. It does not introduce substantial new parameter meaning beyond the structured definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific action ('Download one icon') with explicit formats (SVG or PNG) and modifiers (color/size). The description distinguishes it from inspection workflows by clarifying it is for saving/embedding, not inspecting search results, which separates it from sibling tools like get_icon and search_icons.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says to use it only when the user asked to save or embed the file, and not to inspect search results. This gives a clear when/when-not boundary, but it does not name the specific sibling tool that should be used for inspection, so the guidance is strong but not maximally explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_collectionA
Get a collection and a page of its icons. Service call. Prefer this over calling get_icon on each member.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Icon limit in collection | |
| next_page | No | Token for next page | |
| prev_page | No | Token for previous page | |
| include_svg | No | Include SVG URLs | |
| collection_id | Yes | Unique collection ID | |
| thumbnail_size | No | Thumbnail size in pixels |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. 'Service call' and 'a page of its icons' convey that a single call returns a page of icons rather than one icon, and the preference note hints at batching efficiency. However, it does not describe response structure, error behavior, rate limits, or whether the operation is safe and idempotent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The opening sentence is front-loaded and specific, and the preference note is useful and compact. The standalone sentence 'Service call' is terse and adds only marginal information, preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With six parameters and no output schema, the description gives a high-level result shape but no concrete response format or pagination continuation details. The schema covers parameter meanings, and the description adds batching guidance, so an agent can select and start using the tool, though the definition is not fully self-contained for advanced pagination workflows.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents every parameter. The description adds context for the pagination parameters by saying it returns 'a page of its icons,' but it does not explain parameter defaults, token relationships, or enum semantics beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb-object pair 'Get a collection and a page of its icons,' clearly identifying the resource and the paginated nature of the result. The final sentence distinguishes it from get_icon by noting it should be preferred over per-icon calls, making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs the agent to prefer this tool over calling get_icon on each icon, giving concrete selection guidance and naming the relevant alternative. It does not enumerate when to fall back to get_icon or when search_collections would be more appropriate, so the guidance is strong but not exhaustive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_iconA
Get extra details for one icon, including a temporary SVG icon_url (expires in 1 hour). This is an expensive icon call (FREE trial: 150/day and 150/month). Skip it when search_icons already has the metadata you need.
| Name | Required | Description | Default |
|---|---|---|---|
| icon_id | Yes | Unique icon ID | |
| thumbnail_size | No | Thumbnail size in pixels |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden, and it discloses that the icon_url is temporary and expires in 1 hour, and that the call is expensive with specific quota caps. It doesn't describe every behavioral edge case, but the key constraints are surfaced.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two compact sentences with no filler. The core purpose and temporary URL detail are front-loaded, followed directly by important usage and cost guidance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with only two parameters and 100% schema coverage, the description provides enough context: what it does, a key return value, cost implications, and when to avoid it. It doesn't explain the complete response structure, but the core decision-making context is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so both icon_id and thumbnail_size are already documented in the input schema. The description adds no extra meaning about how these parameters behave or interact, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the primary action: getting extra details for a single icon, including a temporary SVG icon_url. It also hints at a distinction from search_icons by noting when not to use it, though 'extra details' remains somewhat vague about the full set of fields returned.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly warns that this is an expensive icon call with daily/monthly free-trial limits and explicitly says to skip it when search_icons already has the needed metadata. This gives the agent a clear decision rule and a named alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
icon_autocompleteA
Autocomplete icon search terms (max 10). Cheap service call — use before searching if the query is ambiguous.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of suggestions (maximum 10) | |
| query | Yes | Search term for autocomplete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are not provided, so the description carries the burden. It mentions 'Cheap service call' which is a performance trait, but does not disclose return format, error behavior, or other side effects. It adds some value beyond the schema by hinting at cost, but a 3 is fair for not going further.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief, front-loaded with the core purpose, and includes a practical usage hint. Every sentence adds value without fluff, making it highly efficient for the agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple autocomplete tool with fully documented schema, the description provides usage timing and performance context. It lacks details about return format, but given the simplicity and schema coverage, the description is sufficiently complete for agent decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters clearly. The description adds the max limit context (max 10) which matches the schema's maximum of 10, but it does not add new meaning beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Autocomplete') and resource ('icon search terms'), and implicitly scopes it to autocomplete functionality. It doesn't explicitly contrast with siblings like search_icons, but the purpose is clear enough for an agent to understand the tool's role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit usage guidance: 'use before searching if the query is ambiguous.' It indicates when to use this tool, though it doesn't explicitly name alternatives or when not to use it. The guidance is clear and actionable, so a 4 is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_collectionsA
Search Noun Project collections (icon sets). Service call — cheaper than get_icon/download_icon.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results | |
| query | Yes | Collection search term | |
| next_page | No | Token for next page | |
| prev_page | No | Token for previous page |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that this is a 'service call' and cheaper than download-related tools, but it does not disclose whether results are paginated, what the response shape is, whether authentication is required, or other operational behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the core purpose and adds a concise cost-related note. Every part earns its place, and there is no redundant or vague filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is adequate for a basic search tool but incomplete without output schema or annotations. It does not explain what the returned collection data looks like, how pagination should be driven via next_page/prev_page, or any usage caveats.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the parameters are already documented. The description adds no extra meaning about query syntax, limit defaults, or pagination token usage, placing it at the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Search Noun Project collections (icon sets).' This clearly differentiates it from retrieval/download siblings like get_icon and download_icon, and the '(icon sets)' qualifier separates it from search_icons.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies it is used for searching collections rather than icons, but it does not explicitly state when to use this tool versus search_icons, get_collection, or icon_autocomplete. The 'cheaper than get_icon/download_icon' note adds some cost-based context but not clear selection criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_iconsA
Search The Noun Project for icons. Returns IDs, style, license, thumbnails, tags, and attribution. This is a cheap service call — do NOT follow up with get_icon for every result. Use download_icon only when the user wants a file. Prefer a specific query over pagination (FREE trial: 2,000 service calls/month, 1,000/day).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results | |
| query | Yes | Search term (e.g., "dog", "house", "bicycle") | |
| styles | No | Icon style: solid, line, or both | |
| next_page | No | Token for next page | |
| prev_page | No | Token for previous page | |
| include_svg | No | Include SVG URLs in response (1=yes, 0=no) | |
| line_weight | No | Line weight for line icons (1-60) or range (e.g., "18-20") | |
| thumbnail_size | No | Thumbnail size in pixels | |
| limit_to_public_domain | No | Show only public domain icons (1=yes, 0=no) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the call is a cheap 'service call' and provides concrete quota context (2,000/month, 1,000/day), which shapes agent behavior. The warning against redundant get_icon follow-ups and the return-field list further clarify what the agent can rely on. It doesn't cover auth or error behavior, but for a search tool this is non-critical.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, each earning its place: purpose, return values, inter-tool routing, and cost/pagination guidance. Front-loaded with the primary purpose, followed by actionable caveats. No fluff or repetition of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 9 parameters and no output schema, the description covers the essentials: what it returns, when to use alternatives, and quota-driven pagination strategy. It does not specify output shape in detail, but the listed return fields mitigate the missing output schema. Minor omissions like authentication or rate-limit exhaustion handling keep it from a 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents all 9 parameters with descriptions and enums. The description adds meta-advice about query specificity and pagination cost, but no per-parameter meaning beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource: 'Search The Noun Project for icons,' and enumerates the return fields (IDs, style, license, thumbnails, tags, attribution). This clearly distinguishes it from siblings like search_collections (collections) and get_icon (single icon) without requiring the agent to inspect schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when NOT to follow up: 'do NOT follow up with get_icon for every result.' Names the correct alternative for files: 'Use download_icon only when the user wants a file.' Also gives search strategy guidance: 'Prefer a specific query over pagination.' This is textbook when/when-not guidance with named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
7 tool updates
v1.0.0- First observed
check_usage - First observed
download_icon - First observed
get_collection - First observed
get_icon - First observed
icon_autocomplete - First observed
search_collections - First observed
search_icons
TDQS
Scored across 7 tools
Each tool targets a distinct operation: search/get/download for icons, search/get for collections, plus autocomplete and usage checking. get_icon and download_icon are the closest pair, but their descriptions clearly separate metadata/temporary URL retrieval from file download.
Most tools follow a clear verb_noun pattern (get_icon, download_icon, search_icons, search_collections, check_usage). The exception is icon_autocomplete, which reverses the expected order and breaks the otherwise consistent naming convention.
Seven tools is a well-scoped size for a niche icon search and download server. Each tool serves a clear purpose with no redundant entries.
The set covers the full read-only icon workflow: autocomplete, search icons, get icon details, download icons, search/get collections, and check API usage. There are no obvious missing operations for the stated domain.
Maintenance
Related MCP Connectors
Icons for agentic development: search & fetch 366,000+ open-source icons as SVG/PNG. No API key.
Search open SVG icon packs and fetch exact SVG markup from coding agents through MCP.
Multilingual semantic SVG icon search with previews for AI coding agents. 20,000+ icons.
Search & install 6,500+ AI agent skills from skills-hub.ai inside any MCP tool.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA search service based on multiple image APIs and icon generation capabilities, specifically designed for integration with Cursor MCP service. Supports image search, download, and AI-generated icons.16MIT
- AlicenseAqualityDmaintenanceEnables searching and retrieving icons from The Noun Project API with advanced filters for style, color, and size customization.79 npm4MIT
- AlicenseAqualityBmaintenanceDescription: Supericons MCP lets AI coding agents search, recommend, and retrieve SVG icons from a semantic registry of 20,000+ icons.141MIT

Svg/icons MCPofficial
AlicenseNot gradedqualityCmaintenanceEnables 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