Connect IconsClub to Claude, Cursor or VS Code and pull real App Store logos, SVGs, and brand color palettes straight into whatever you're building — by name.
It's a remote server — nothing to install. This is the URL every client below uses:
One click with the button — or add it to ~/.cursor/mcp.json manually, then restart Cursor:
{
"mcpServers": {
"iconsclub": { "url": "https://iconsclub.xyz/mcp" }
}
}Settings → Connectors → Add custom connector → paste the URL above → Add. Leave the OAuth/auth fields blank — there's no login. (Pro, Max, Team, or Enterprise.)
One command in your terminal:
claude mcp add --transport http iconsclub https://iconsclub.xyz/mcp
Add to .vscode/mcp.json (note: servers + type, not mcpServers):
{
"servers": {
"iconsclub": { "type": "http", "url": "https://iconsclub.xyz/mcp" }
}
}No Connectors UI? Add this to claude_desktop_config.json (needs Node 18+), then restart Claude. On macOS it lives at ~/Library/Application Support/Claude/.
{
"mcpServers": {
"iconsclub": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://iconsclub.xyz/mcp"]
}
}
}