thiings-unofficial
v1.0.0
Published
MCP server and CLI for thiings.co — search, browse, and download 10,000+ AI-generated 3D icons
Maintainers
Readme
thiings
MCP server and CLI for thiings.co. Search, browse, and download 10,000+ AI-generated 3D icons from your terminal or any MCP client.
Built by Clerk Charlie, the collection lives at thiings.co. This project gives you programmatic access to all of it.
Install
npm install -g thiings-unofficialOr run without installing:
npx thiings-unofficialCLI
Just run thiings and you get an interactive menu:
thiings — 10,000+ AI-generated 3D icons
https://www.thiings.co
? What would you like to do?
❯ Search icons
Browse icons
View icon details
Download icons
List categories
Manage cache
ExitPick an option and follow the prompts. Search results show the URL for each icon and a link to view all results on thiings.co. You can drill into details, download one icon, or batch download everything.
MCP Server
Claude Code
claude mcp add thiings npx thiings-mcpClaude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"thiings": {
"command": "npx",
"args": ["thiings-mcp"]
}
}
}From source
git clone https://github.com/realsamrat/thiings.git
cd thiings
npm install && npm run build
claude mcp add thiings node /absolute/path/to/thiings/build/mcp/server.jsAvailable tools
| Tool | What it does |
|------|-------------|
| search_icons | Search by name, keyword, or category. Returns id, name, categories, image URL, and page URL for each icon. Also returns a searchUrl to view results on thiings.co. |
| get_icon | Full details for one icon including description, categories, and page URL. |
| list_categories | All 501 categories with icon counts and browse URLs. |
| browse_icons | Paginated browsing with optional category filter. Each icon includes its page URL. |
| download_icon | Download a single PNG to disk. |
| download_icons | Batch download by query, category, or explicit list of IDs. |
Resources
| URI | Content |
|-----|---------|
| thiings://catalog | Full cached icon index (JSON) |
| thiings://icon/{id} | Single icon with description (JSON) |
How it works
thiings.co is a Next.js app. The catalog page embeds all 10,000 icons as serialized React Server Component data. The scraper extracts that payload, unescapes it, and parses the JSON array. Individual icon pages contain descriptions in the same RSC format, split across multiple script chunks.
Images are served from Vercel Blob Storage as 1024x1024 RGBA PNGs.
The local cache at ~/.thiings/cache.json stores the full catalog for 24 hours before refreshing.
Project structure
src/
core/
types.ts # Shared types (Icon, IconDetail, SearchResult)
scraper.ts # Fetches and parses thiings.co pages
cache.ts # Local JSON cache (~/.thiings/cache.json, 24h TTL)
search.ts # Scored search over name + categories
downloader.ts # Single and batch PNG downloads
mcp/
server.ts # MCP server (6 tools, 2 resources, stdio transport)
cli/
index.ts # Interactive CLI with inquirerTech
- TypeScript, Node.js
- @modelcontextprotocol/sdk for the MCP server
- @inquirer/prompts for the interactive CLI
- chalk for terminal colors
- zod for input validation
- No heavy dependencies. Regex-based parsing instead of cheerio.
License
MIT
