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.
@freevectoricons/mcp
Beta. This package is under active development. Tool schemas, configuration options, and error behavior may change before v1.0.0. Report issues or review the product docs before production use.
Model Context Protocol (MCP) server for FreeVectorIcons design collections.
Connects Cursor, Claude Desktop, and other MCP clients to a single FreeVectorIcons collection: catalog icons, uploaded SVGs, strategy briefs, DESIGN.md, and related project files. Access is scoped to one collection token.
npm: @freevectoricons/mcp
Overview
Agents that generate icons inline often produce inconsistent SVG, unstable identifiers, and incorrect licensing across sessions. FreeVectorIcons stores approved assets in versioned collections with stable IDs and metadata.
This server exposes that collection to MCP clients. Agents search and retrieve canonical assets instead of regenerating SVG from scratch, and write designs back into the collection for review. Uploaded assets are versioned, so agents can iterate freely without losing prior work. The server runs over stdio and calls the FreeVectorIcons HTTP API. Responses are metadata-first JSON; file bytes are fetched only when a tool requests inline content or a download URL.
Related MCP server: RemixIcon MCP
Requirements
Node.js 20 or later
A FreeVectorIcons account
A collection-scoped MCP token
Setup
Open a collection at freevectoricons.com.
Go to Integrations → Setup MCP.
Create a token and copy the collection ID and secret.
Add the server to your MCP client configuration (for example .cursor/mcp.json):
{
"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>"
}
}
}
}Run the server with npx as shown above. MCP uses stdio for protocol messages; the process must not write non-protocol output to stdout.
See mcp.json.example for a copy-paste template.
macOS (Claude Desktop)
Edit ~/Library/Application Support/Claude/claude_desktop_config.json and add the same mcpServers block.
Windows (Claude Desktop)
Edit %APPDATA%\Claude\claude_desktop_config.json and add the same mcpServers block.
Linux (Claude Desktop)
Edit ~/.config/Claude/claude_desktop_config.json and add the same mcpServers block.
Environment variables
Variable | Required | Default | Description |
| yes | — | Collection-scoped MCP token |
| yes | — | Collection ID |
| no |
| API base URL (include |
| no |
| When |
| no |
| HTTP request timeout for API calls (milliseconds) |
| no |
| Timeout for binary upload requests (milliseconds) |
| no |
| Maximum retry attempts for transient failures |
| no |
| Base delay for exponential backoff (milliseconds) |
| no |
| Log level: |
FVI_API_URL can be omitted if you use the production API. The setup example above sets it explicitly for clarity.
Write tools are enabled by default. Agents can park new assets and upload new versions of existing ones; each change is stored as a version you can review or restore in the collection UI. Set FVI_READ_ONLY=true only if you want retrieval without uploads.
Token security
Treat FVI_TOKEN like a password. It grants access to one collection.
Prefer OS keychain integration or a secrets manager in team environments.
If you use environment variables in config files, restrict file permissions and never commit tokens to version control.
Rotate tokens from the collection Integrations tab if a token may have been exposed.
Set
FVI_READ_ONLY=trueif an agent should only read from the collection, not upload.
Tools
Read (always available)
Tool | Description |
| 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 (enabled by default)
Tool | Description |
| Create asset record and signed upload target |
| Upload inline text or base64 into the collection |
| Upload a new version of an existing asset (prior versions retained) |
Uploaded assets keep version history in FreeVectorIcons. Agents should prefer create_design_asset_version when refining an existing design, and park_design_asset for new files. Agents should use metadata and download URLs for images and PDFs.
Optional write metadata: drlProjectId, drlAssetType, documentType, tags.
Limitations
Collection-scoped. One token grants access to one collection, not the global icon catalog.
Catalog quality. Catalog SVGs are AI-generated and refined on a schedule; verify assets before production use.
No design review. The server moves files and metadata; it does not evaluate brand fit.
Development
For local API development against a running FVI API server:
FVI_API_URL=http://localhost:5001/api \
FVI_COLLECTION_ID=<collection-id> \
FVI_TOKEN=<collection-token> \
node dist/mcp-server.mjsnpm install
npm run build
node dist/mcp-server.mjsTo run from a local checkout:
"args": ["-y", "file:/absolute/path/to/fvi-mcp"]Build first (npm run build). The bundled entry is dist/mcp-server.mjs.
Related
freevectoricons.com/mcp — product documentation
ai-icon-generator — open pipeline for catalog icons
License
MIT — applies to this MCP server software only. See LICENSE.
Icon usage is governed separately by the FreeVectorIcons Community License. Attribution may be required depending on your plan and how icons are used.
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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