noun mcp for VS Code
io.github.alisaitteke/noun-mcp
Production MCP server for The Noun Project — search & download icons in Cursor/Claude with OAuth…
client:VS Code
transport:stdio
runtime:npm
Install noun mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "noun-consumer-key",
"description": "NOUN_CONSUMER_KEY",
"password": true
},
{
"type": "promptString",
"id": "noun-consumer-secret",
"description": "NOUN_CONSUMER_SECRET",
"password": true
},
{
"type": "promptString",
"id": "noun-api-tier",
"description": "NOUN_API_TIER",
"password": true
}
],
"servers": {
"noun-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@alisaitteke/noun-mcp"
],
"env": {
"NOUN_CONSUMER_KEY": "${input:noun-consumer-key}",
"NOUN_CONSUMER_SECRET": "${input:noun-consumer-secret}",
"NOUN_API_TIER": "${input:noun-api-tier}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs