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

@agentar/agentic-design-mobile-mcp

v0.0.2

Published

MCP server for Agentic UI Mobile component docs and examples (local markdown).

Readme

agentic-design-mobile-mcp

NPM version NPM downloads

基于 Model Context Protocolstdio 服务,为 Agentic Design Mobile@alipay/agentic-design-mobile)提供本地 Markdown 形式的组件说明与示例代码,供 Cursor、Claude Desktop 等客户端通过 MCP 工具查询。

功能概览

  • 传输方式:标准输入输出(stdio),符合 MCP 规范,由宿主进程拉起子进程通信。
  • 数据源:包内 components/<组件名>/docs.mdexamples.md
  • 推荐调用顺序:先 get_component_list 取组件名与资源可用性,再按需调用 get_component_docs / get_component_examples

MCP 工具

| 工具名 | 说明 | |--------|------| | get_component_list | 列出全部组件;每项标明是否包含 docs.mdexamples.md。返回 Markdown 列表 + JSON。 | | get_component_docs | 参数:component(字符串,大小写不敏感)。返回该组件 docs.md 全文(用法、API、说明等,不含独立示例文件内容)。 | | get_component_examples | 参数:component(同上)。返回该组件 examples.md 全文(示例与代码片段)。 |

组件目录下须至少存在 docs.mdexamples.md 之一才会出现在列表中;若仅有其一,调用缺失的一类会报错。

安装

从 npm 使用(推荐)

pnpm add -D @agentar/agentic-design-mobile-mcp
# 或
npm install @agentar/agentic-design-mobile-mcp

在 Cursor 中配置

使用 stdio,将 command / args 指到本机 Node 与构建产物(路径请改为你的绝对路径):

{
  "mcpServers": {
    "agentic-design-mobile-mcp": {
      "command": "npx",
      "args": [
        "@agentar/agentic-design-mobile-mcp"
      ]
    }
  }
}

LICENSE

ISC