npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@elf-express/admin-net-mcp

v1.2.2

Published

Admin.NET / Furion / SqlSugar / Vue 3 framework knowledge MCP server

Readme

Admin.NET Knowledge MCP Server

為 Admin.NET(Furion + SqlSugar)提供框架知識的 MCP Server,讓 Claude 能直接查詢框架慣例,不需要每次 session 重新說明。

提供的工具

| 工具 | 說明 | | ----------------------- | ----------------------------------------------- | | get_entity_guide | EntityBase 類別階層、各欄位、如何選擇基礎類別 | | get_service_guide | IDynamicApiController、BaseService、DTO 命名 | | get_sqlsugar_guide | AOP 自動填充、Repository 查詢、交易管理 | | get_config_guide | IConfigurableOptions、JSON 設定檔結構 | | get_plugin_guide | AppStartup 優先順序、插件結構 | | get_event_guide | EventSubscribe 訂閱者、發布事件 | | get_attribute_guide | 所有自訂 Attribute 參考 | | search_knowledge | 跨主題關鍵字搜尋 | | list_topics | 列出所有主題 |

團隊安裝步驟

1. 編譯(第一次或有更新時)

cd e:/source/platfrom-admin/.claude/mcp-server
npm install
npm run build

2. 設定 Claude Code

C:\Users\{你的名字}\.claude\settings.json 加入:

{
  "mcpServers": {
    "admin-net": {
      "command": "node",
      "args": ["e:/source/platfrom-admin/.claude/mcp-server/dist/index.js"]
    }
  }
}

3. 驗證

重新啟動 Claude Code 後,執行 /mcp 指令,應看到 admin-net 伺服器和 9 個工具。

4Tree

.claude/mcp-server/
├── src/
│   ├── index.ts              — MCP server 主程式(9 個工具)
│   └── knowledge/
│       ├── entity.ts         — 實體基礎類別
│       ├── service.ts        — Service/Controller 模式
│       ├── sqlsugar.ts       — ORM + AOP
│       ├── config.ts         — 設定系統
│       ├── plugin.ts         — 插件系統
│       ├── event.ts          — 事件匯流排
│       └── attributes.ts     — 自訂 Attribute
├── dist/                     — 編譯輸出(已產生)
├── package.json
├── tsconfig.json
└── README.md

更新知識庫

修改 src/knowledge/ 中的 .ts 檔案後,重新執行 npm run build 即可。 所有人 git pull 後重新 build 就能取得最新知識。