MCP Server
VueIcons provides an Model Context Protocol (MCP) server that allows agents to interact with the icons. It provides icons information and usage examples to any MCP-compatible client or IDE.
Running the server
VSCode
Create .vscode/mcp.json file with the following content:
json
{
"servers": {
"vue-icons": {
"type": "stdio",
"command": "pnpx",
"args": [
"@kalimahapps/vue-icons",
"mcp"
],
"env": {}
}
},
"inputs": []
}