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

@openyida/mcp-app

v0.1.1

Published

OpenYida MCP App — Interactive UIs for Yida low-code platform in Claude, ChatGPT and other MCP hosts

Readme

@openyida/mcp-app

Interactive UIs for Yida low-code platform — renders inline in Claude, ChatGPT, VS Code and other MCP hosts.

npm version License: MIT Node.js ≥18


What is this?

@openyida/mcp-app is an MCP Apps server that brings interactive UIs for Yida (宜搭) low-code platform directly into AI chat conversations.

Instead of getting plain text responses, you see:

  • 📱 App Dashboard — card-style application list with icons and links
  • 📊 Report Charts — interactive Bar / Line / Pie charts with click-to-switch
  • 📋 Form Preview — visual schema preview with field types and IDs

Quick Start

Use with Claude Desktop / VS Code / ChatGPT

Add to your MCP client config:

{
  "mcpServers": {
    "openyida": {
      "command": "npx",
      "args": ["-y", "@openyida/mcp-app", "--stdio"]
    }
  }
}

Use with HTTP transport

npx @openyida/mcp-app
# Server listening on http://localhost:3001/mcp

Prerequisites

  • Node.js ≥ 18
  • openyida CLI installed (npm install -g openyida) — needed for authentication

Before using MCP tools, log in to Yida:

openyida login

Available Tools

| Tool | Description | Interactive UI | |------|-------------|----------------| | yida_list_apps | List all Yida applications | ✅ App Dashboard | | yida_create_app | Create a new application | — | | yida_get_schema | Get form schema & field IDs | ✅ Form Preview | | yida_create_form | Create a form with fields | — | | yida_query_data | Query form data instances | — | | yida_create_instance | Create a form data record | — | | yida_query_report | Query data for chart visualization | ✅ Report Chart | | yida_create_report | Create a Yida report | — | | yida_login_status | Check login status | — | | yida_login | Trigger login flow | — |

Development

cd mcp-app
npm install
npm run dev     # Watch mode (views + server)
npm run build   # Production build

License

MIT — see LICENSE