fvi-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@fvi-mcpsearch for 'checkmark' icons"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
fvi-mcp
MCP server for FreeVectorIcons design collections.
Connects Cursor, Claude Desktop, and other MCP clients to one FVI collection — icons, uploaded SVGs, strategy briefs, DESIGN.md, and related project files. Scoped to a single collection token.
npm: @freevectoricons/mcp
Why this exists
The usual agent workflow for icons is: prompt → inline SVG → paste into code. That breaks down quickly — inconsistent paths, missing viewBox, made-up attribution, different output on every retry.
FVI stores assets in a collection with stable ids, tags, and license fields. This server lets agents search and fetch what's already approved instead of generating new SVG from scratch.
It's a stdio MCP wrapper over the FVI HTTP API. Responses are metadata-first JSON; file bytes are fetched only when a tool asks for content or a download URL.
Related MCP server: RemixIcon MCP
Setup
You need a FreeVectorIcons account and an MCP token for a design collection.
Open a collection at freevectoricons.com
Integrations → Setup MCP
Create a token; copy the collection ID and secret
Add to .cursor/mcp.json (or your client's MCP config):
{
"mcpServers": {
"freevectoricons": {
"command": "npx",
"args": ["-y", "@freevectoricons/mcp"],
"env": {
"FVI_API_URL": "https://freevectoricons.com/api",
"FVI_COLLECTION_ID": "<collection-id>",
"FVI_TOKEN": "<collection-token>"
}
}
}
}Use npx, not pnpm run. Package managers print lifecycle text to stdout, which breaks MCP stdio transport.
See mcp.json.example for a copy-paste template.
Environment variables
Variable | Required | Default | Description |
| yes | — | Collection-scoped MCP token |
| yes | — | Collection id |
| no |
| API base URL (include |
For production: FVI_API_URL=https://freevectoricons.com/api
Tools
Read
Tool | What it does |
| Collection metadata, strategy brief, asset summary |
| All assets (metadata only) |
| Search by name, tag, category, or style |
| One asset by id |
| Inline UTF-8 for catalog SVGs, uploaded SVGs, Markdown |
| Short-lived URL for PNG, PDF, and other binaries |
Write
Tool | What it does |
| Create asset record + signed upload target |
| Upload inline text or base64 into the collection |
| Upload a new version of an existing asset |
Binary files are not embedded in MCP responses. Agents should use metadata + download URLs for images and PDFs.
Optional write metadata: drlProjectId, drlAssetType, documentType, tags.
Development
npm install
npm run build
node dist/mcp-server.mjsTo run from a local checkout in Cursor:
"args": ["-y", "file:/absolute/path/to/fvi-mcp"]Build first (npm run build). The bundled entry is dist/mcp-server.mjs.
What this is not
Not a global icon search API. One token, one collection.
Not a guarantee of pixel-perfect icons. Catalog SVGs are AI-generated and refined on a schedule; check assets before production use.
Not a replacement for your design review. It moves files and metadata; it doesn't judge brand fit.
Related
freevectoricons.com/mcp — product docs
ai-icon-generator — open pipeline that produces catalog icons
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FreeVectorIcons/fvi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server