Icons your coding agent can find
An agent-first asset catalog. Describe a project, get the pack that fits, pick the icons you need and fetch the files - over a remote MCP server or a plain JSON REST API that scores and explains every result.
-packs
-icons
-categories
-service
Search
Packs
The catalog is empty
No packs have been published yet. The REST API and the MCP server answer with empty
lists until the first pack lands in the database.
Connect an agent over MCP
The server speaks the Streamable HTTP transport of the Model Context Protocol at
/mcp. The connection is stateless - no session handshake,
every call stands on its own.
Claude Code, one command
claude mcp add --transport http ai-assetstore /mcp
Or as a project scoped .mcp.json
{
"mcpServers": {
"ai-assetstore": {
"type": "http",
"url": "/mcp"
}
}
}
Available tools
list_asset_packs- list packs, optionally filteredget_asset_pack- full pack metadata plus all its assetssearch_asset_packs- find the best pack for a querysearch_assets- find individual assets with relevance scoresget_asset- one asset, optionally including the SVG contentget_assets- up to 20 assets in one callrecommend_assets_for_project- pack choice with reasoning
REST API
GET /api/healthGET /api/packsGET /api/packs/{packId}GET /api/assets/{assetId}GET /api/search?q={query}&type=pack|assetGET /api/recommend?project={description}&count={n}GET /api/catalogGET /files/{packId}/{slug}.{svg,png}