图标数据服务

mcpdev/Iconify_icon
Hosted
2 Stars 2.8k 次浏览 小笨羊 更新于 2026-08-23
该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (4 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

get_all_icon_sets

该工具无需必填参数,直接调用即可

get_icon_set 1 个参数 需填 1 项

必填参数:prefix

search_icons 3 个参数 需填 1 项

必填参数:query

get_icon_data 1 个参数 需填 1 项

必填参数:icon

服务介绍

图标数据服务

提供访问Iconify超过20万开源矢量图标的MCP服务器,支持图标集浏览、搜索及多框架使用示例获取。

工具列表

本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能:

工具名称 描述
get_all_icon_sets Browse all available icon collections from Iconify (200+ icon sets with 200,000+ icons). Returns a list of all icon sets with their metadata including name, total icons, author, license, and sample icons.
get_icon_set Retrieve detailed information about a specific icon set including all available icons in that set. Provide the icon set prefix (e.g., 'mdi', 'fa', 'bi').
search_icons Search through Iconify's icon collection with flexible query parameters. Returns matching icons from all icon sets or a specific set.
get_icon_data Retrieve specific icon data with usage examples for popular frameworks (React, Vue, Svelte, etc.). Provide the full icon name in format 'prefix:icon-name' (e.g., 'mdi:home', 'fa:user').

检查服务

工具在线测试: https://mcp.xiaobenyang.com/inspector/1777316659568643

服务配置

如何获取 XBY-APIKEY ?

访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY

SSE

{
  "mcpServers": {
    "图标数据服务": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777316659568643/sse"
    }
  }
}

STREAMABLE HTTP

{
  "mcpServers": {
    "图标数据服务": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777316659568643/mcp"
    }
  }
}

STDIO

{
    "mcpServers": {
        "图标数据服务": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777316659568643",
          },
          "transport": "stdio"
        }
      }
}

相关 MCP 服务