Noun MCP Server

MCP server for The Noun Project - search and download icons directly in Cursor AI and Claude

Local serverstdioPython

What is the Noun MCP server?

MCP server for The Noun Project - search and download icons directly in Cursor AI and Claude. That is what the noun mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

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.

The tools it exposes

The server publishes 10 tools. What each one is for:

  • Tier — Monthly Limit
  • FREE — 5,000 calls
  • PAID — Unlimited
  • search_icons — The search_icons tool exposed by this server
  • get_icon — The get_icon tool exposed by this server
  • download_icon — The download_icon tool exposed by this server
  • search_collections — The search_collections tool exposed by this server
  • get_collection — The get_collection tool exposed by this server
  • icon_autocomplete — The icon_autocomplete tool exposed by this server
  • check_usage — The check_usage tool exposed by this server

Getting it running

The server ships on npm as @alisaitteke/noun-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: NOUN_CONSUMER_KEY, NOUN_CONSUMER_SECRET, NOUN_API_TIER. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Noun's toolset — Tier, FREE, PAID and 7 more — is a fair guide to whether it matches your workflow. It is maintained by alisaitteke; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Noun's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Noun.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
TierMonthly Limit
FREE5,000 calls
PAIDUnlimited
search_iconsThe search_icons tool exposed by this server.
get_iconThe get_icon tool exposed by this server.
download_iconThe download_icon tool exposed by this server.
search_collectionsThe search_collections tool exposed by this server.
get_collectionThe get_collection tool exposed by this server.
icon_autocompleteThe icon_autocomplete tool exposed by this server.
check_usageThe check_usage tool exposed by this server.

How to install the Noun MCP server

{
  "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"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
NOUN_CONSUMER_KEYCredential the server authenticates with.Yes
NOUN_CONSUMER_SECRETCredential the server authenticates with.Yes
NOUN_API_TIERConfiguration value read at startup.Optional

Example prompts to try

  • Use Noun to Tier.
  • Use Noun to FREE.
  • Use Noun to PAID.

Frequently asked questions

It connects Noun to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (Tier, FREE, PAID, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Noun directly.